How to add/remove Global search entities for Experience Cloud/Community Cloud in Salesforce?
1. Open the Search Page. 2. Select the "Global Search Results" component and adjust. Output:
1. Open the Search Page. 2. Select the "Global Search Results" component and adjust. Output:
Use the following code to prevent certain Profile users to download files in Salesforce. Apex Classes that implements Sfc.ContentDownloadHandlerFactory interface will be triggered when the files are downloaded in Salesforce. ....
End Point URL: https://yourInstance.salesforce.com/services/data/v52.0/sobjects/ObjectAPIName/ExternalIdFieldAPI Name/ExternalIdValue Example: https://infallibletechie5-dev-ed.my.salesforce.com/services/data/v51.0/sobjects/Employee__c/Email__c/test2@testing.com Workbench: Reference Article - https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/using_resources_retrieve_with_externalid.htm To use Postman client, use the below steps. 1. Create a Connected App. Update the Callback URL as ....
1. In the Embedded Chat, make sure only Contact is selected in the Pre-Chat. 2. Create a Flow to Create Case record and Update Chat Transcript with the Case Id. ....
If the agents are unable to login into Salesforce Omni-Channel, check the following: 1. Check "Storage Usage" under setup. If the Storage is full, then users won't able to login ....
"This record doesn't have any associated Messaging Users. Ensure that any Messaging Users are set up properly and that they haven't opted out of Messaging" 1. Check whether the Agent ....
Automated Case user must have the System Administrator profile or the 'Modify All Data' and 'Send Email' permissions. 1. Go to Support Settings in Setup. 2. Check "Automated Case User". Help Article ....
Sample Code: HTML: <template> Test from Record Detail Page - {recordId}. <lightning-record-form object-api-name="Account" record-id={recordId} layout-type="Compact" columns="1" mode="readonly"> </lightning-record-form> </template> JavaScript: import { ....
Apex Class: public with sharing class ExampleController { @AuraEnabled(cacheable=true) public static List < Account > fetchAccounts() { return [ SELECT Id, Name, Industry, ( SELECT Id, FirstName, ....
In the BOT, use End Chat Rule.Output: