System.LimitException: Too many queueable jobs added to the queue
1. You can add up to 50 jobs to the queue with System.enqueueJob in a single transaction. 2. When chaining jobs with System.enqueueJob, you can add only one job from ....
1. You can add up to 50 jobs to the queue with System.enqueueJob in a single transaction. 2. When chaining jobs with System.enqueueJob, you can add only one job from ....
Sample code:Component: <aura:component implements="lightning:actionOverride, lightning:isUrlAddressable"> <aura:attribute name="recordId" type="Id"/> <aura:handler name="init" value="{!this}" action="{!c.doInit}"/> Record Id is {!v.recordId}. </aura:component> Controller: ({ doInit : function( component, event, helper ) { let pageRef = ....
Sample Code: @RestResource(urlMapping='/InboundRESTAPI/*') global with sharing class InboundRESTAPIController { @HttpGet global static Account fetchAccount() { RestRequest req = RestContext.request; Map < String, String > ....
If you are using Embedded Service Deployment Chat, then disable "Pre-Chat page" option for Salesforce Einstein Bot without Pre-Chat. Disable "Pre-Chat page" in Embedded Service Deployment. Output:
getAll() method can be used. 1. Create a Custom Metadata Type. 2. Create few records. Sample Code: Map < String, Test__mdt > mapCustomMetadataType = Test__mdt.getAll(); for ( String strKey : mapCustomMetadataType.keySet() ....
"Enable Queue" in the Chat Button can be used to queue incoming Chats when all agents are busy(Agents are at full capacity assisting other customers). We can define Queue Size Per ....
1. Open the Search Page. 2. Select the "Global Search Results" component and adjust. Output:
Use the following code to prevent certain Profile users to download files in Salesforce. Apex Classes that implements Sfc.ContentDownloadHandlerFactory interface will be triggered when the files are downloaded in Salesforce. ....
End Point URL: https://yourInstance.salesforce.com/services/data/v52.0/sobjects/ObjectAPIName/ExternalIdFieldAPI Name/ExternalIdValue Example: https://infallibletechie5-dev-ed.my.salesforce.com/services/data/v51.0/sobjects/Employee__c/Email__c/test2@testing.com Workbench: Reference Article - https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/using_resources_retrieve_with_externalid.htm To use Postman client, use the below steps. 1. Create a Connected App. Update the Callback URL as ....
1. In the Embedded Chat, make sure only Contact is selected in the Pre-Chat. 2. Create a Flow to Create Case record and Update Chat Transcript with the Case Id. ....