Open Account record when Case is routed via Salesforce Omni-Channel Flow
We can make use of Add Screen Pop Flow element in the Salesforce Omni-Channel Flow to open the Account record as subtab to the Case record when routed using the ....
We can make use of Add Screen Pop Flow element in the Salesforce Omni-Channel Flow to open the Account record as subtab to the Case record when routed using the ....
JSON.deserialize() can be used in Salesforce Apex to parse Array payload in Apex REST API. Please check the following Apex Class for reference. Sample Apex Class: @RestResource( urlMapping='/ApexRESTAPI/' ) global ....
To find Salesforce Permission Sets with Password Never Expires permission enabled, we have to check PermissionsPasswordNeverExpires on the PermissionSet object/entity. Please check the following SOQL which will retrieve all the ....
Please check the following if your fields are not available/visible in Salesforce Report Filter 1. Make sure the Field Level Security is set so that it is visible to the ....
NOW () - ( 15/1440 ) can be checked against the record's LastModifiedDate in the Validation Rule to prevent/avoid/lock Salesforce records update for 15 minutes . Sample Validation Rule: Validation ....
We can make use ContentVersion entity to create files using Salesforce Apex. To store the File inside a specific folder inside the library, create ContentDocumentLink record with the Content Version's ....
Lookup field is supported in Salesforce Dashboard Filter. When you use Lookup field in the Salesforce Dashboard filter, use the record name instead of Id to filter the records. If ....
Exception: System.DmlException: Update failed. First exception on row 0 with id 06AXXXXXXXXXXXXXXX; first error: INSUFFICIENT_ACCESS_OR_READONLY, You can't create a link for Email Message when it's not in draft state.: [LinkedEntityId] ....
Salesforce Live Chat Object Access Configuration object/entity represents the action that can be performed on a specified object/entity by the Chat API. API name of the Salesforce Live Chat Object ....
To prevent or avoid users selecting "All with access" in Salesforce Chatter Post, we can develop a Apex Trigger on FeedItem object/entity and throw an error. Please check the following ....