Two Level Sorting in Salesforce Dashboard
1. Select "Lightning Table" in Display As. 2. Select Columns to group by.3. Use Sort By and Then Sort By to do two level sorting.
1. Select "Lightning Table" in Display As. 2. Select Columns to group by.3. Use Sort By and Then Sort By to do two level sorting.
Equals Count operator can be used to find the count or number of records in Record Collection Variable in Salesforce Flow. Sample Flow: Flow Configurations: ....
1. Go to Deployment Status in Setup.2. Check the Start Time and End Time.
Requirement: Disable View and Edit button when Is_Active__c check box field value is false. Enable View and Edit button when Is_Active__c check box field value is true. Sample Code: Apex ....
In a Asynchronous call, the thread will not wait until it completes its tasks before proceeding to next. Instead it proceeds to next leaving it run in separate thread. In ....
Sample code: Apex Class: public class LightningDualListSearchController { @AuraEnabled( cacheable = true ) public static List < OptionWrapper > fetchAccounts() { List < OptionWrapper > ....
Login Hours is used to restrict users to avoid logging into Salesforce during Non-Login hours. We can specify the timing for each day during which the users are allowed to ....
1. Go to Flows in Setup. 2. Click New Flow. 3. Select 'Record-Triggered Flow'. 4. Select the Object, Criteria, etc.. 5. Click "Add Scheduled Paths (Optional)". 6. Select the Time ....
LoginHistory entity can be used to find whether users are using Data Loader. The Application column/field in the LoginHistory entity will be one of the following when logged in from ....
Error: Formula result is data type (JUNCTIONIDLIST(Ids)), incompatible with expected data type (null). Case.OwnerId or Lead.OwnerId is not supported as it can refer to Queue also. So, use Case.Owner:User.Id and ....