How to set WhatId while creating Task record from Process Builder in Salesforce?
Use Related To ID to set WhatId while creating Task record from Process Builder.Please check the following screenshot for reference.
Use Related To ID to set WhatId while creating Task record from Process Builder.Please check the following screenshot for reference.
We cannot set sharing and permissions for the Master and Detail objects separately. Detail and subdetail(parent and child) records inherit security settings and permissions from the master(parent) record. You can’t set ....
1. Open the Profile. 2. Right Click on the browser and select "Inspect". 3. Use Select An Element to inspect the page. 4. Select the Permission Name. 5. You will ....
When the user's profile requires a High Assurance session at login, but the admin is logged in with a standard security session level, then it will prompt MFA for the ....
To create, edit, or view process builders, user should have "Manage Flow" and "View All Data" permissions.Following SOQL will fetch the Profiles which has "Manage Flow" and "View All Data" ....
Following SOQL will fetch the Profiles which has "Manage Flow" and "View All Data" permissions.SOQL: SELECT Id, Name FROM Profile WHERE PermissionsViewAllData = true AND PermissionsManageInteraction = truePermissionsViewAllData is the ....
Syntax:Database.GetUpdatedResult r = Database.getUpdated( 'Object API Name', StartDateTime, EndDateTime);Sample Code:Database.GetUpdatedResult r = Database.getUpdated( 'Account', Datetime.now().addDays( -1 ), Datetime.now());System.debug( 'Updated Records result is ' + r );To get Ids:Database.GetUpdatedResult r = ....
Syntax: public class ClassName implements Queueable { //constructor public ClassName() { } public void execute( QueueableContext qc ) { } } To execute: System.enqueueJob( new ClassName() );
Syntax for Future method: public class className { @future public static void methodName() { } } Syntax for Future method with callout: public class className { @future(callout=true) public static void ....
1. Open Einstein Activity Capture Settings. 2. Select Configuration Tab. 3. Edit the Configuration. 4. Select "ADVANCED SYNC SETTINGS". 5. Update the "Filter by End Date".