Salesforce API Security Token
When we access Salesforce from an IP address that’s outside your company’s trusted IP ranges using a desktop client or the API, we need a security token to log in. ....
When we access Salesforce from an IP address that’s outside your company’s trusted IP ranges using a desktop client or the API, we need a security token to log in. ....
To Auto Refresh Salesforce Dashboard in Lightning Experience without sending email, disable "Receive new results by email when dashboard is refreshed" when scheduling the Dashboard. 1. Open the Dashboard. 2. ....
1. Create a variable with the name prechatInfo. 2. Use Loop element in the loop to iterate it. 3. Decision element can be used to check key and value. Also, ....
If the Chat connection is idle or disconnected, the Chat will be ended in 40 seconds. To increase this idle connection time out, use Idle Connection Warning Duration and Idle Connection ....
Sample Code: public class SampleQueueableClassWithFinalizer implements Finalizer, Queueable { private String strError; public void execute( QueueableContext ctx ) { try { ....
Error while creating Account {"status":400,"body":{"message":"An error occurred while trying to update the record. Please try again.","statusCode":400,"enhancedErrorType":"RecordError","output":{"errors":[],"fieldErrors":{"Name":[{"constituentField":"Name","duplicateRecordError":null,"errorCode":"REQUIRED_FIELD_MISSING","field":"Name","fieldLabel":"Account Name","message":"Required fields are missing: [Name]"}]}}},"headers":{}} The above exception occurs when using createRecord from 'lightning/uiRecordApi' if ....
Call Dialog: Call Dialog retains the context of the conversation and returns the conversation back to the original dialog after the second dialog(called dialog) is completed. Redirect to Dialog: Redirect ....
"Maximum invalid login attempts" should be set to "No Limit" on the Profile Password policies section. This will make sure the Account is not locked due invalid username and password ....
1. Select "Configure global actions for authenticated users". 2. Click "Edit Layout" for the Global Quick Action used in the Experience Cloud Site Builder. 3. Drag and drop the fields ....
Sample Code: HTML: <template> <lightning-card> <div style="width:200px; padding:0.5rem;"> <lightning-combobox label="Industry" value={selectedIndustryValue} options={optionsIndustry} onchange={handleIndustryChange} placeholder="Select Industry"> </lightning-combobox> </div> <div style="width:200px; padding:0.5rem;"> <lightning-combobox label="Account Source" value={selectedAccountSourceValue} options={optionsAccountSource} onchange={handleAccountSourceChange} placeholder="Select Account Source"> </lightning-combobox> ....