“Show All Updates” link Salesforce Chatter Feed
If Feed Tracking is enabled for an object, then old value and new value are displayed as the Chatter Feeds.Note:If there are more than two feed-tracked field values changes in ....
If Feed Tracking is enabled for an object, then old value and new value are displayed as the Chatter Feeds.Note:If there are more than two feed-tracked field values changes in ....
When the users login into the Sandbox after the Refresh, it will prompt them to setup the MFA again.Note:The configuration in Authenticator App won't be automatically deleted after the Sandbox ....
Tracking Start and End Time of the Chats:1. Create a Report Type with the Object Chat Transcripts.2. Add Start Time and End Time while creating the Report.Agent and Visitor Time ....
System.QueryException: unexpected token: '<EOF>' exception in Salesforce occurs due to Malformed Query String. If you are dynamically building the query, use System.debug() to print the query. Generated Debug log to ....
Page Block Table, Data Table, Data List and Apex Repeat can be used to render list in Visualforce page. Check the sample code for reference. Sample Code: Visualforce Page: <apex:page ....
Sample Code: HTML: <template> <lightning-card title="Prechat Form"> <template class="slds-m-around_medium" for:each={fields} for:item="field"> <template if:true={field.dropDown} key={field.name}> <div key={field.name}>Priority</div> <select class="slds-select" key={field.name} onchange={handlePriorityChange}> <option label="Low" value="Low"></option> ....
Classic:1. Go to Reports Tab.2. Click New.3. Select Accounts Report Type and click Create. 4. Select Cross Filter. 5. Set Accounts without Contacts.Lightning:1. Go to Reports tab.2. Click New.3. Select "Accounts" Report ....
Validation Rule can be used to force users to select right Stage while creating Opportunity record in Salesforce.Sample Validation rule:AND(ISNEW(),NOT( ISPICKVAL( StageName , 'Prospecting' ) )) Output:
For setting up WhatsApp Channel with all the required configuration, use the following link https://www.infallibletechie.com/2021/03/how-to-route-whatsapp-messages-to.html 1. Go to Bot Overview and add the WhatsApp Channel in Connection. 2. Setup the ....
To prevent users from updating Notes in Salesforce, develop a trigger on Note object and throw an error when someone tries to update the notes. Sample Trigger:trigger NoteTrigger on Note ( ....