How to handle incoming SMS Messages without an Agent in Salesforce?
Einstein Bot can be used to handle incoming SMS Messages without an Agent. If the user need to connect with an Agent, we can transfer the session to an Agent ....
Einstein Bot can be used to handle incoming SMS Messages without an Agent. If the user need to connect with an Agent, we can transfer the session to an Agent ....
"Edit Read Only Fields" permission is available under System Permissions. "Edit Read Only Fields" permission allows users to edit values in the fields that are read only due to page layouts ....
1. Create a Chat Agent Configuration. Make sure Chat Conference Enabled is checked and Users or Profiles are added(I have added System Administrator Profile).2. When you are in a Chat. ....
Using Apex, we can query the Custom Metadata Type records. Using wire framework, we can call the apex class and method from Lightning Web Component and display it using lightning-datatable. ....
embedded_svc.settings.extraPrechatFormDetails can be used in Salesforce Embedded Service Chat to pass value to the Custom Field on the Chat Transcript object/entity. Create a Custom Field in the Chat Transcript object ....
lightning-record-form can be used in the Salesforce Lightning Web Component for Picklist field inline editing. Sample Code: Apex Class: public with sharing class AccountController { @AuraEnabled( cacheable = true ) ....
Salesforce Approval Process Comments are stored in ProcessInstanceStep entity. Sample Query/SOQL: SELECT Id, Comments, StepStatus, Actor.Name FROM ProcessInstanceStep
A feature license entitles a user to access an additional feature that is not included with his or her user license. For Example, Service Cloud User check box on the User ....
In Salesforce Omni Supervisor tab, Supervisors can filter the Channel by Phone to check available users to accept Voice Calls. 1. Open Omni Supervisor tab. 2. Select Phone under Channels ....
Sample Class:public class Utility { public static Set < Id > fetchUserIdsOfPublicGroup( Id groupId ) { Set < Id > userIds = new Set < Id >(); Set < ....