How to Create Multi-Select Pick-list Field Using Lightning Web Component

This blog will help you learn about creating Multi-Select pick-list field using Lightning Web Component thus allowing users to select multiple pick-list values in any standard Salesforce object field. To implement Multi-Select pick-list we need a very basic UI with two standard lightning web component: To start with, we will use lightning-combo box to show… 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: Calling apex method using wire services in… Read More »

How to resolve ERROR [The Sales Tax Reporting check box has not been selected in the Accounts Receivable Options window. (Bad Request)] encountered while promoting order from Salesforce to Sage 100 ERP

In this blog, we will learn how a User can resolve the “Sales Tax Reporting check box has not been selected in the Accounts Receivable Options window” error encountered while Promoting Orders from Salesforce to Sage 100 ERP. Refer to the below error image : Sales Tax Reporting Error Image What is Sales Tax Reporting?… 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

This blog post will go over how to use a Screen Flow to call an Apex class using a straightforward example. The Screen Flow generated in this example has three variables that we have created. Initially, recordId is configured to be available for both input and output. 1. RecordId Variable The second variable that we… Read More »

How to resolve ERROR [PVX data deserialization failed.] encountered while promoting data from Salesforce to Sage 100 ERP

Due to unpredictable reasons, we often encounter numerous errors while Promoting records to Sage. Some are known, and some are not, since not everyone has wisdom about the mistakes encountered on the screen. In this blog, we focus on understanding the basic troubleshooting steps to perform if ERROR [PVX data deserialization failed.] occurs while promoting… Read More »

How to resolve the ERROR [S0000] [ProvideX][ODBC Driver]Column not found: UDF_SALESFORCE encountered while accessing SData over the Web for Sage 100 ERP

Due to various unpredictable reasons, we often encounter numerous errors while browsing the web. Some are known, and some are not, since not everyone has wisdom about the errors encountered on the screen. So in this blog, we focus on understanding the basic troubleshooting steps to perform if ERROR [S0000] occurs while accessing the SData… 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 »