Salesforce Amazon Connect Outbound Call Configuration
To make Outbound Calls from Salesforce using Amazon Connect, following configurations have to be completed. 1. Go to Amazon Connect in AWS Console. You should login using the root user ....
To make Outbound Calls from Salesforce using Amazon Connect, following configurations have to be completed. 1. Go to Amazon Connect in AWS Console. You should login using the root user ....
Record-Triggered Flow on AgentWork entity can be used to update Case when the Owner is updated via Salesforce Omni-Channel. Sample Flow: Start Element Configuration: Assignment Element configuration: Update Records Element ....
We can use lightnging-card and lightning/navigation to show New button as top level action along with lightning-datatable. Sample Code: Apex Class: public class AccountController { @AuraEnabled( cacheable = true ) ....
len(): len() is used to find the length of a string. Sample Code: strInfo = input( 'Enter a String: ' ); print( 'Length of ' + strInfo + ' is', ....
Currently, we have Edit, Delete and Activate/Deactivate actions on the Path Assistant. So, in order to clone a Salesforce Path Assistant for a different Record Type, use the following Workaround. ....
Using onClick event on lightning-helptext, we can make the help text as hyperlink. lightning/navigation can be used for navigation. The tool tip text will work as Hyperlink. Sample Code: Lightning ....
Row Actions can be allowed on Row Selection in Salesforce Lightning Web Component Lightning Data Table using Dynamic Row Actions. Sample Code: Apex Class: public class AccountController { @AuraEnabled( cacheable ....
1. How to find whether apex is currently executed in Trigger Context in Salesforce? Trigger.isExecuting can be used to find whether apex is currently executed in Trigger Context in Salesforce. Sample ....
rename can be used to change or update the columns in Splunk. Syntax: Your Splunk Query | rename <Original Column Name> as <New Column Name> Example: Your Splunk Query | ....
Queueable interface can be used to attach a Salesforce Visualforce as PDF to an outgoing email from trigger. Sample Visualforce page: <apex:page standardController="Account"> <apex:pageBlock > <apex:pageBlockSection > <apex:pageBlockSectionItem >Account Name</apex:pageBlockSectionItem> ....