“Under Construction” Exception in Salesforce Experience Cloud
Check whether the Experience Cloud site is Inactive. If the Experience Cloud site is Inactive, then it can be only be accessed by the Salesforce users who have the "Create ....
Check whether the Experience Cloud site is Inactive. If the Experience Cloud site is Inactive, then it can be only be accessed by the Salesforce users who have the "Create ....
1. Create a List View. 2. In the filter select "My case teams". My case teams will pull cases that you are part via Case Team. Even if you are ....
Custom Labels can be used to avoid hard coding queue id in Salesforce Flow. Sample Custom Label: Referencing Custom Label in Salesforce Flow Get Records Element:
Use EmbeddedServiceConfig to fetch all Embedded Service Deployments using Apache ANT tool from Salesforce. Sample Package.xml: <?xml version="1.0" encoding="UTF-8"?> <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> <members>*</members> <name>EmbeddedServiceConfig</name> </types> ....
1. Find the CreatedDate of the Chat Transcript record. SELECT CreatedDate FROM LiveChatTranscript WHERE Id = '5708c000005VqSAAA0' CreatedDate is 2022-04-29T02:42:52 2. Find when the agents from the queue changed their ....
Exception: System.CalloutException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target Resolution: This certification exception in Salesforce occurs when the endpoint has certificate issue. Reach ....
There are three possibilities for this issue: 1. Running user for creating Account, Contact and User for Experience Cloud site access doesn't have a Role. To fix this issue, assign ....
Different types of Flows in Salesforce 1. Screen Flow: This can be launched from Quick Action. https://www.infallibletechie.com/2022/02/how-to-pass-record-id-to-flow-in.html 2. Scheduled Flow: Automatically runs in specified interval like daily, weekly, etc This ....
1. Go to User Interface in Salesforce Setup. 2. Enable the check box Enable "Set Audit Fields upon Record Creation" and "Update Records with Inactive Owners" User Permissions. 3. Create ....
Sample Formula for Easter Standard Timezone(GMT or UTC - 4): IF( HOUR(TIMEVALUE( CreatedDate - 4/24 ) ) < 12, "Morning", IF( HOUR(TIMEVALUE( CreatedDate - 4/24 )) < 16, "Afternoon", "Evening" ....