How to sign up for Salesforce Spring ’21 Pre-Release org?
1. Go to https://www.salesforce.com/form/signup/prerelease-spring21/.2. Enter all the information. Click Start Trial to sign up.
1. Go to https://www.salesforce.com/form/signup/prerelease-spring21/.2. Enter all the information. Click Start Trial to sign up.
We can use for loop within another for loop to iterate two or more list(Collection) variables and create junction object records.Check the below sample implementation.Objects:Employee__cHobby__cEmployee_Hobby__c(Junction Object)Flow Variables: objJuncRec - Variable to ....
Sample Code: parentLWC.html: <template> <div class="slds-box slds-theme_default"> Value entered in Child LWC is {strOutput}<br/><br/> <c-child-l-w-c onpass={fetchValue}></c-child-l-w-c> </div> </template> parentLWC.js: import { LightningElement } from 'lwc'; export default class ParentLWC extends ....
Sample Code: global class createCaseInbound implements Messaging.InboundEmailHandler { global Messaging.InboundEmailResult handleInboundEmail(Messaging.InboundEmail email, Messaging.InboundEnvelope env) { Messaging.InboundEmailResult result = new Messaging.InboundEmailResult(); String myPlainText= ''; myPlainText = email.plainTextBody; try { Case objCase ....
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 ....