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

Create Record using Flow in Salesforce

In this post, we will implement the functionality to Create Record using Flow in Salesforce. We will also cover How to get the current record Id in Flow in Salesforce. Screen Flows are used to guide users through a business process. We can take the input from users, make some decisions based on the input, … Read more

Flow Basics: How to use Flow Builder in Salesforce?

In this post, we will go through the Flow Basics in Salesforce and How to use Flow Builder in Salesforce to automate the business processes. We will also go through the different types of Flows in Salesforce. Let’s just get into the good stuff. What are different types of Flows in Salesforce? We can create … 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

Access Visualforce Page without Login

In this post, we will implement the functionality to access Visualforce Page without Login using Sites in Salesforce. There might be a requirement where we need to expose some information for Customers or take some inputs from the Customer like Feedback. In such cases, we can expose Visualforce Page publically to show some information or … Read more

Quick Action using LWC with Example

In this post, we will create a Quick Action using LWC (Lightning Web Component). For Aura Components, we have to implement force:lightningQuickAction interface in the Aura component to enable Aura Component as Quick Action. There is a standard way to use Quick Action in LWC which is introduced in Summer ’21 Release. Please check the … Read more

Call Apex Method from Process to Send an Email

In this post, we will implement the functionality to call an Apex method from Process to send an Email from Apex. We can use Email Alert with Process to send an Email with only Configuration but there are some restrictions with Email Alerts like: Email Alerts have limited set of Recipients. If we use Email … Read more

Custom Permission in LWC (Lightning Web Component)

In this post, we will access the Custom Permission in LWC (Lightning Web Component) to check if the User has access to perform a particular action. Initially, we had to do this by calling an Apex method to check if the User has access to Custom Permission. In this post, we will use the Latest … Read more

Email-to-Case in Salesforce

In this post, we will implement the Out-of-the-Box functionality Email-to-Case in Salesforce. Using Email-to-Case in Salesforce, we can send an email to specific email address that we can register and a Case will be created in Salesforce. We can also auto populate few of the fields. Implementation Type Email-to-Case in Quick Find box and click … Read more

Custom Notification using Process Builder

In this post, we will implement the functionality to trigger and display Custom Notification using Process Builder in Salesforce. We can do this using Salesforce Our-Of-The-Box features. Hence, we don’t have to write the code. Implementation In this implementation, we will trigger the Custom Notification for the Owner of the Opportunity once the Opportunity Stage … Read more