NOT IN Operation in Salesforce SOQL
In Salesforce SOQL Query, NOT() and IN() are distinct methods employed. It's important to note, however, that Salesforce SOQL Query does not utilise a direct NOT IN() function. By tactfully integrating ....
In Salesforce SOQL Query, NOT() and IN() are distinct methods employed. It's important to note, however, that Salesforce SOQL Query does not utilise a direct NOT IN() function. By tactfully integrating ....
Self-Signed Certificate: A self-signed certificate generated from the Setup is signed by Salesforce. Process is very simple and straight forward. With just few clicks, the certificate will be generated and ....
lightning-progress-indicator can be used in Salesforce Lightning Web Componet to give a visual indication on the progress of a particular process. Sample Code: Lightning Web Component: HTML: <template> <lightning-card> <div ....
lightning-record-picker can be used in Salesforce Lightning Web Component for record selection. Sample Lightning Web Component: HTML: <template> <lightning-card> <div class="slds-var-p-around_medium"> <lightning-record-picker label="Accounts" placeholder="Search Accounts" object-api-name="Account" onchange={handleChange}> </lightning-record-picker> <template if:true={selectedAccountId}> ....
Using Salesforce Big Object and Batch Apex, we can archive the records regularly. 1. Make a note of your Object Fields for the Big Object creation. 2. Create a Big ....
Exception: There was an error saving the page: PropertyType cannot be specified for flexipages of type UTILITY_BAR Resolution: 1. If you are using a Salesforce Lightning Web Component, make sure ....
To remove Salesforce User Sessions, please check the following steps: 1. Go to Session Management in Salesforce Setup. 2. Select the Active Sessions from the list and click the Remove ....
1. Create a Picklist Field for Skill selection in the Case object/entity. 2. Create a Skill Picklist Field for Skill-Based Routing Rules in the Chat Transcript object/entity. 3. Create a ....
EventBus.EventPublishSuccessCallback and EventBus.EventPublishFailureCallback interfaces can be used in an Apex Class to track Successful and Failure Salesforce Platform Events. Sample Apex Class: public class PlatformEventHandler implements EventBus.EventPublishSuccessCallback, EventBus.EventPublishFailureCallback { public ....
Exception: System.InvalidParameterValueException: Invalid private key. Must be 16 bytes. Resolution: When we use Crypto.encryptWithManagedIV(), the key should be at least 16 bytes. Sample Code: /* Encryption */ Blob key = ....