Salesforce Certified Heroku Architect Notes

An application is a collection of source code written in one of these languages, perhaps a framework, and some dependency description that instructs a build system as to which additional dependencies are needed in order to build and run the application. Procfiles list process types – named commands that you may want executed. Applications consist of your source code, a …

Salesforce Summer ’21 Release Top features

See Record Access Reasons in Lightning Experience A user has access to a record, but why? Is it because of their role? Their territory? From a sharing rule? Now you can see why a user has the access they do, right from Record Sharing Hierarchy in Lightning Experience. Previously, you switched to Salesforce Classic to …

Flow enhancements in Spring ’20 release

Before-save update in a flow is 10 times faster than an update in a record-change process that’s built-in Process Builder  Before-save updates in flow accomplish that same goal, but much more quickly because each record doesn’t get saved to the database again. Avoiding that extra save procedure means skipping another round of assignment rules, auto-response …

Salesforce Spring ’20 Release features for Developers

1. The @track Decorator Is No Longer Required for Lightning Web Components: No more guessing about whether to use @track to make a field reactive. All fields in a Lightning web component class are reactive. If a field’s value changes and the field is used in a template or in a getter of a property that’s used in a …

What are skinny Tables in Salesforce

A skinny table is a custom table in the Force.com platform that contains a subset of fields from a standard or custom base Salesforce object. Force.com can have multiple skinny tables if needed, and maintains them and keeps them completely transparent to you. Skinny Table considerations: Skinny tables don’t include soft-deleted rows (i.e., records in …

What is Data skew in Salesforce

In Salesforce when large number of child records (more then 10k) are linked to one parent records that situation is called data skew in Salesforce Type of Data skew: Account data skew Ownership skew Lookup Skew Account data skew: Certain Salesforce objects, like accounts and opportunities, have special data relationships that maintain parent and child …

How to use OAuth 2.0 JWT Bearer Token Flow

Step 1 : Create self-sign certificate and add to key store keytool -genkey -keyalg RSA -alias aliasname -keystore keystore.js.jks -validity 365 -keysize 2048 keytool -export -alias aliasname -file uwc.crt -keystore keystore.jks -storepass randomstorepassword step 2: Create .crt file keytool -export -alias aliasname -file exportfilename.crt -keystore keystore.jks -storepass randomstorepassword Step 3: Generate assertion token using java …

Salesforce Lightning Component Interview questions-Part II

Salesforce Lightning component Interview questions with answers for beginner and experienced developers. Lightning component framework guide at Sfdcbeginner

How to find Salesforce org ID

Salesforce classic login to your org from login.salesforce.com Click on Setup 3. Type Company information in quick find box 4. Click Company information under Company information Salesforce.com organization id column has your organization id Lightning experience click on gear icon and select setup 2. Type Company information in quick find box Salesforce.com organization id column …

Lightning Component Child-Parent Communication without Event

The framework uses event-driven programming. You write handlers that respond to interface events as they occur. The events may or may not have been triggered by user interaction. In the Lightning Component framework, events are fired from JavaScript controller actions. Events can contain attributes that can be set before the event is fired and read …

%d bloggers like this: