Split Text using Salesforce Formula
There is no split() in Salesforce formula. It is available in Apex if you want to go with Trigger. But, you can use RIGHT, LEN and FIND methods to split ....
There is no split() in Salesforce formula. It is available in Apex if you want to go with Trigger. But, you can use RIGHT, LEN and FIND methods to split ....
Insufficient Privileges: You do not have the level of access necessary to perform the operation you requested. Please contact the owner of the record or your administrator if access is ....
To retrieve the Custom Metadata and the associated custom fields using package.xml in Salesforce, check the following package.xml. Sample package.xml: <?xml version="1.0" encoding="UTF-8"?> <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> ....
Enable customer timeout on the Salesforce Chat button should be used to end the chats when the visitors are unresponsive. 1. Enable "Enable customer timeout". 2. Enter Customer Time-Out (seconds). 3. ....
Custom "Update a Record" Quick Action can be used to change layout for record ownership change in Salesforce. Sample Quick Action: Output: https://youtu.be/0c0itEKHuRE
Switch statement should be utilised to use Trigger.operationType in Salesforce Trigger. Trigger operationType in the Salesforce Trigger avoids multiple if else conditions to check trigger.isInsert, trigger.isUpdate, trigger.isBefore, trigger.isAfter, etc.. Sample ....
Salesforce Platform Events trigger ends abruptly when it hits Uncaught exceptions like Governor limits. EventBus.TriggerContext.currentContext().setResumeCheckpoint(replayId) can be used to resume the Platform Event trigger from the failed replayId. replayId passed ....
Using Rule Action, we can transfer Chats from BOT to a Queue in Salesforce. Sample Rule Actions: In the above example, in the first Rule Action, "Set Routing Type" is ....
addHours() can be used to add one hour to a Date Time field using Trigger in Salesforce. Sample Trigger: trigger AccountTrigger on Account( before insert ) { for ( Account objAcc ....
The following sample implementation helps to upload files from outside the organization since guest user doesn't need to authenticate. 1. Enable "Allow site guest users to upload files" in Salesforce ....