How to find users with Service Cloud User check box checked or enabled in Salesforce?
Sample SOQL:SELECT Id, Name FROM User WHERE UserPermissionsSupportUser = true Output:
Sample SOQL:SELECT Id, Name FROM User WHERE UserPermissionsSupportUser = true Output:
To resolve the "OAUTH_APPROVAL_ERROR_GENERIC : An unexpected error has occured during authentication. Please try again." Exception in Salesforce, please check the following steps.1. Set Relax IP restrictions in the Connected ....
In order to pass pass report filter value in the URL, we have to use fv0, fv1....fvn based the filters used in the report. In the Lightning Web Component state ....
In the Formula Field, INCLUDES() can be used to check whether the Multi Picklist Field has a specific value. Sample Formula Field: Output:
The Transaction Finalizers feature enables you to attach actions, using the System.Finalizer interface, to asynchronous Apex jobs that use the Queueable framework. A specific use case is to design recovery ....
If you are using Finalizer in the Queueable job, this exception is thrown when the retry limit exceeds more than 5.For Developer Edition and Trial organizations, the maximum stack depth ....
Use the following code in the Code Snippet. doFind and isExactMatch are set to false for Email, First Name and Last Name. But, doCreate is set to true for Email, ....
Sample Decimal Field: Sample Code: Apex Class: public with sharing class OpportunityController { @AuraEnabled( cacheable = true ) public static List < Opportunity > fetchOpptys(){ ....
Sample code: Apex Class: public with sharing class OpportunityController { @AuraEnabled( cacheable = true ) public static List < Opportunity > fetchOpptys(){ return ....
NavigationMixin.Navigate with type as 'standard__recordPage' can be used to navigate to report from Lightning Web Component(LWC) in Salesforce. Sample Code: HTML: <template> <lightning-card> <lightning-button label="View Report" ....