Custom Fields for Task and Event Objects Salesforce
Task and Event objects are part of Activity. Activity is available in Object Manager to add fields for Task and Event objects. You cannot create fields directly in Task and ....
Task and Event objects are part of Activity. Activity is available in Object Manager to add fields for Task and Event objects. You cannot create fields directly in Task and ....
Custom Permission: HTML: <template> <lightning-card> <lightning-input type="toggle" label="Test Permission" checked={isTestPermEnabled} disabled> </lightning-input> <lightning-input type="toggle" label="View All Data Permission" checked={isViewAllDataEnabled} ....
To review a current list of Salesforce supported certificates, you can append /cacerts.jsp to any instance URL. Syntax: https://INSTANCE.salesforce.com/cacerts.jsp Example: https://cs32.salesforce.com/cacerts.jsp Note: Salesforce trusts only root certificate authority (CA) certificates, ....
Salesforce allows only up to five batch jobs to run at a time, i.e. to be in a “Processing” status. When this limit is hit, jobs that are submitted are ....
1. If it is a record creation specific Quick Action, check the following:a. Make sure the user have edit access to the record.https://help.salesforce.com/s/articleView?id=000340216&type=1b. Make sure the user's profile have Read ....
1. Create a Report with Users as the Report Type. 2. Add Source IP Address to the Report.
Apex Class: public class EmbeddedChatController { public String selectedOption { get; set; } public EmbeddedChatController() { selectedOption = ApexPages.currentPage().getParameters().containsKey( 'language' ) ? ApexPages.currentPage().getParameters().get( ....
Sample code: <apex:page showHeader="false"> <style> #liveAgentClientChat.liveAgentStateWaiting { font-weight: bold; font-size: 30px; } body { overflow: hidden; width: 100%; height: ....
embedded_svc.liveAgentAPI.startChat() can be used to invoke Embedded Service Chat on click of a button in Salesforce. Check the following article for invoking from a Force.com site: https://www.infallibletechie.com/2021/12/how-to-invoke-embedded-service-chat-on.html Sample Code in ....
In Salesforce, Agents can click the Transfer icon to transfer the Chat. Check the following screenshot for reference. Agent Screen: Visitor Screen: Disable Chat Transfer in Salesforce Lightning Omni-Channel: https://www.infallibletechie.com/2021/12/disable-chat-transfer-in-salesforce.html