Bulk API 2.0 in Salesforce
Bulk API 2.0 Bulk API 2.0 provides a simple interface to quickly load large amounts of data into your Salesforce org and to perform bulk queries on your org data. ....
Bulk API 2.0 Bulk API 2.0 provides a simple interface to quickly load large amounts of data into your Salesforce org and to perform bulk queries on your org data. ....
To fetch all Permission Sets where View All Data is true in Salesforce, use PermissionsViewAllData as filter on the PermissionSet object/entity. SOQL: SELECT Id, Name, ProfileId, IsCustom, IsOwnedByProfile, PermissionsViewAllData, PermissionsModifyAllData ....
Difference between Application Event and Component Event The major difference between application and component event is that component event is used in child to parent components and application event can be ....
Composite API improves the REST API call performance. It avoids multiple round trips to a server. Instead, it makes a single call with multiple subrequests. allOrNone The request body uses ....
We can easily Concatenate variables in Salesforce Flows. In the Assignment, add multiple variables into it. It will include values from multiple variables or sources. We can add text also ....
Sample Code: HTML: <template> <lightning-card title = "Accounts" icon-name = "custom:custom63"> <div class = "slds-m-around_medium"> <template if:true = {accounts}> <div> <lightning-datatable key-field = "Id" data = {accounts} columns = {columns} ....
Note: 1. Digital Engagement license is required to use this feature. 2. SMS Channel should be completed before setting up the routing as per the below steps. To start handling ....
1. Get the ProcessInstanceId. SELECT Id, ProcessInstanceId FROM ProcessInstanceStep WHERE Id = '<Id Of the Process Instance Step>’' 2. ProcessDefinitionId is the id of the Approval Process. SELECT Id, TargetObjectId, ....
Note: 1. Pagination is done in client side(JavaScript). So, this is not the ideal solution for mass records. 2. Consider checking the page performance before using it in Production. 3. ....
1. Data Export - Setup --> Data Management --> Data Export. Note:Enable the below.1. Include images, documents, and attachments 2. Include Salesforce Files and Salesforce CRM Content document ....