How to capture ParentId in ContentNote Salesforce Notes created with the enhanced note tool and this feature available from Winter’16. This object is available in API version 32.0 and later …
June 2019
-
- APEXSALESFORCESalesforce CustomizationSalesforce Interview QuestionsSalesforce.com
How to Stop Apex Scheduled jobs in Salesforce
How to Stop Apex Scheduled jobs in Salesforce System.abortJob(Id) can do this. Simply pass in the Id of the AsyncApexJob for the job in question. You’ll note the docs specifically mention …
-
How to Check Logged in User has a Custom Permission in Salesforce As of the Winter 18 Release, use the FeatureManagement class to identify the logged in User has a Custom Permission. below …
-
How to Hide Switch to Classic option to profile level Switch to Classic, Use this link to switch between Salesforce Classic and Salesforce Lightning Experience whenever you want. Hide Switch …
-
Useful Links for Salesforce Data Skew Issue If we have a very large number of contacts associated to the same account in Salesforce, Contacts Updates fail, Email-to-Case fails when the …
-
Get Record Type ID Using Object Name We can get the Object Record Type Id values in multiple ways like using SOQL, getDescribSObject and below are some examples: Example 1: …