Category Archives: Salesforce Services

How to Fetch current Record Id from Lightning Web Components (LWC)

This blog discusses on how to fetch the current record Id in the lightning web component. RecordId property is used in the lightning record page, and the property, i.e., recordId, is set to a current record Id. We are using this property in a JavaScript class using a @api decorator, and we need to define… Read More »

How to call the apex method in lightning web component

This blog will help you learn how to call the apex method in the lightning web component. To perform the functions written in the apex class to perform a specific task and create new business solutions. There are two ways to call Apex method from Lightning Web Component: Call apex method Using Wire services. Call… Read More »

How to create records from Apex Restful Service in Salesforce

In this blog, we will learn how to use Apex Restful service to create salesforce records. We will use Workbench to call the apex restful service to perform this procedure.  Step 1. Firstly, Login to the Workbench by using your salesforce org. For instance, use this link to login into Workbench Login-workbench Now, select the… Read More »

How To Create A Quote Template In Salesforce?

This blog will discuss how a user can create a Quote Template in Salesforce. Below are the steps to create a Quote Template in Salesforce: – Firstly, log in to your Salesforce Org. Secondly, go to Setup and Enter Templates in the Quick Find Box. In addition, click on “Quote Templates” in the Lightning Experience.… Read More »

How to call an APEX Class from a Screen-Flow

In this blog, we will discuss on how to invoke an Apex class from a Screen Flow through an simple example. In this example, we have created a Screen Flow in which we have created three variables. First one is recordId which is set as available for Input and Output both. RecordId Variable The second… Read More »

Custom Approval Process in Salesforce – Part 2

In continuation to our previous blog, where we worked on the UI for Approver. In this blog, we will be working on the functionality & also build UI. ApproverOrReject.cmp The above code will create the UI for the Approver Screen as shown below, Approver Screen Here Approver can write their comment prior to Approval or Rejection… Read More »

Custom Approval Process in Salesforce – Part 1

In this blog, we will discuss how to Create Custom Approval Process. But, the Purpose of creating Custom Approval Process is when the client wants any addition in Approval UI or any validation on Approval screen then we can’t achieve that because of Standard Functionality, so then we have created our own Approval Process. So… Read More »

How to invoke lightning Auto launched Flow from the Apex class

In this blog, we will discuss on how to invoke a lightning Auto launched flow from the apex class. The flow in Salesforce can be launched without user Interaction such as from a process builder or the apex code. So here we are creating a auto launched flow and call it through the apex code.… Read More »

Work around for VS Code Issue: Error authenticating the refresh token due to: expired access/refresh token

While working on Salesforce project using VS Code you/user might notice that the VS Code’s refresh command suddenly stopped working. It would give the error “Error authenticating with the refresh token due to: expired access/refresh token” You would not find any solution online, so mentioned below are the solution details that you can follow. Firstly,… Read More »

How to Create (and Implement) Custom Salesforce Notification using Process Builder

This blog will discuss how to create Custom Salesforce Notification using the Process Builder Salesforce platform. We have considered the Order Creation process, but it can be enhanced and used for any procedure. Below are the steps for Creating a new “Custom Notification” using Process Builder for Custom Objects using Process Builder. Steps to Define… Read More »