Salesforce Data Migration Best Practices

When a customer decides to move to a new platform, there is a need to migrate all the functional data from their legacy system. Salesforce.com data migration has its own unique process, with its own set of complexities. Whatever the specific nature of any data migration, the ultimate aim is to improve corporate performance and … Continue reading Salesforce Data Migration Best Practices

Salesforce Apex Trigger Best Practice

1) Write One Trigger per one Object You can have n number of triggers on single object, but as apex best practice we have  to write  event operations into the singe trigger with the if conditions. Example code like below if (Trigger.isInsert) { ..... ...... } if (Trigger.isUpdate) { ........ ........ } A single Apex … Continue reading Salesforce Apex Trigger Best Practice

What is Object in Salesforce ?

Salesforce Object: Objects are nothing but Tables in regular database. The entire application data is stored  in the Object. > There are two types of Objects. 1. Standard Objects. 2. Custom Objects. Standard Objects: These are the Objects, Which are provided by salesforce.com to meet global CRM functionalities. Eg: Accounts, Contacts, Leads, Products, Campaigns, Cases, … Continue reading What is Object in Salesforce ?

What is Permission Set in Salesforce

What is Permission set? A permission set is a collection of settings and permission that give users access to various functions.The settings and permissions in permissions sets are also found in profiles, but permission sets extend user’s functional access without changing their profiles. Purpose: The profile will have many users, if we give any permissions … Continue reading What is Permission Set in Salesforce

Copy Opportunity Line Item Custom Fields to New Quote Line Items

At the time of this project, when a Quote is created from the Salesforce UI (Classic or Lightning), or the Quote is syncing, and you create an OpportunityLineItem (that is, add an Opportunity Product via the Products related list) then Salesforce automatically copies and syncs the OpportunityLineItem standard fields to the QuoteLineItem standard fields. Custom … Continue reading Copy Opportunity Line Item Custom Fields to New Quote Line Items