Salesforce Record Triggered Flow with Example

In this post, we will implement Record Triggered Flow with Example. Record Triggered Flow is the new type of Flow introduced by Salesforce. Salesforce Record Triggered Flow allows us to get rid of some of the Apex Trigger methods. This will not replace the Apex Triggers completely as some complex logic needs to be implemented … Read more

Share Records with Manual Sharing in Lightning

Manual Sharing in Lightning is the must feature for Salesforce Developers. In this post, we will see how can we share records with Manual Sharing in Lightning. Earlier, to share the records manually, we had to switch to Salesforce Classic and then use the Sharing button to share the records. We don’t have to do … Read more

How to use LWC in Flow?

In this post, we will implement the functionality to use LWC in Flows to add LWC on the Screen Component in Flows. We will also cover How to pass the parameters from Flow to Lightning Web Component. Let’s hop into the implementation. Implementation In this implementation, we will create a Lightning Web Component to display … Read more

Difference between Var, Let, and Const in JavaScript

In this post, we will dig deeper into the different types of variables in JavaScript and the Difference between Var, Let, and Const in JavaScript. var, let and const are used to declare variables in JavaScript. Whenever Salesforce Developer works with Aura Components or Lightning Web Components, they always get confused about these declarations, especially … Read more

Preview Files in Lightning Aura Components

In this post, we will implement the functionality to preview files in Lightning Aura Component using lightning:fileCard and custom implementation. Let’s get into the implementation. Implementation In this implementation, we will create a Lightning Aura Component to display and preview images. Create a Lightning Aura Component and lightning:fileCard which accepts two arguments: fileId: Id of … Read more

Access Fields of an Object Dynamically in Lightning

In this post, we will implement the functionality to access Fields of an Object dynamically in Lightning Component. Ideally, we can access the Field of an Object using {!v.objectName.fieldName}. For example, to access the name of Account, we can use {!v.account.Name}. But what if we don’t know the name of the Field we want to … Read more

Retrieve Component using Package.xml (All-in-One)

In this post, we will see how can we retrieve components using the Package.xml file from Salesforce Org. There are different types of components in Salesforce and it is difficult to remember the API names and Syntax of all the components required to retrieve using Package.xml. Hence, this post will help you to retrieve any … Read more

Current Record ID in LWC, Aura, and Quick Action

In this post, we will implement the functionality to get the current Record ID in LWC (Lightning Web Component), Lightning Aura Component, and Lightning Quick Action. Let’s hop into the implementation. Implementation In this implementation, we will create a Lightning Web Component and Aura Component to get the Current Record ID in LWC and Aura … Read more

Dynamic Forms in Lightning using Lightning App Builder

In this post, we will implement the latest feature provided as part of the Winter ’21 release that is Salesforce Dynamic Forms in Lightning using Lightning App Builder. Using Dynamic forms in Lightning, we can drag and drop the fields in Lightning App Builder to arrange them as per the need rather than updating the … Read more

Call Method of Child from Parent – Reusable Component in Lightning

In this post, we will implement the functionality to call a method of Child component from Parent and how to make a Reusable Component in Lightning. To call a method of Child Component from Parent, we need to make use of <aura:method>. <aura:method> executes in a Synchronous manner and hence it is easy to return … Read more