Salesforce Asynchronous Apex
1. Future MethodWe can avoid Mixed DML issue by running two different transactions. Call outs to the external Web Services can be executed asynchronously.2. Batch ApexMainly used for large data ....
1. Future MethodWe can avoid Mixed DML issue by running two different transactions. Call outs to the external Web Services can be executed asynchronously.2. Batch ApexMainly used for large data ....
When the incoming calls are not attended by the Agents, there will be an entry in Agent Work entity with the status "Unavailable". 1. Create a Custom Report Type on ....
If the Salesforce Service Cloud Voice Agent receives the following exception, then the Agent doesn't have "Contact Center Connected App" permission set. Exception: "Insufficient PrivilegesYou do not have the level ....
1. Make sure Visualforce domain URL is added to the Approved origins. https://your-domain.lightning.force.com Note: This is a Mandatory step. 2. "Softphone Popout Enabled" should be enabled on Call Center Definition ....
If Start Conversation Quick Action is missing on the Messaging End User in Salesforce, find the compact layout assigned to the profile. Add the Messaging Channel field to the Compact Layout ....
Standard Messaging Session Transfer feature is not currently available in Salesforce. Vote for the following idea for the standard Messaging Session Transfer feature in Salesforce. https://ideas.salesforce.com/s/idea/a0B8W00000GdmJtUAJ/messaging-agent-transfers If the above Standard ....
Fields in Salesforce Omni-Channel Widgets are derived from the Compact Layout. 1. Edit the Object's Compact Layout. 2. Log out and log in again in Omni-Channel widget. 3. Create the ....
Sample Code:HTML: <template> <lightning-card title="Highlight and Bold Matching Text"> <div onkeyup={handleKeyUp} class="slds-m-around_medium"> <lightning-input label="Search" type="search" onchange={handleChange} value={searchKey} ....
Sample Code: HTML: <template> <lightning-card title="Highlight Matching Text"> <div onkeyup={handleKeyUp} class="slds-m-around_medium"> <lightning-input label="Search" type="search" onchange={handleChange} value={searchKey} ></lightning-input> ....
Sample Code: HTML: <template> <lightning-card title="Bold Matching Text"> <div onkeyup={handleKeyUp} class="slds-m-around_medium"> <lightning-input label="Search" type="search" onchange={handleChange} value={searchKey} ></lightning-input> ....