Tag Archives: Lightning Component

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: lightning-combo box lightning-pill To start with, we will use lightning-combo… Read More »

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 »

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 »

AR-Invoice Promotion (GUMU™ Add-On) from Salesforce to Sage 300 ERP – Lightning Version

In this blog, we will discuss how a user can promote an AR-Invoice from Salesforce to Sage 300 ERP using GUMU™ Integration. Our product GUMU™ Integration is well known for the real-time, bi-directional sync of data between Salesforce to Sage ERP. Using GUMU™ users can promote Invoices from Salesforce to Sage ERP as well as import the… 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 »

AR-Invoice Promotion (GUMU™ Add-On) from Salesforce to Sage 100 ERP – Lightning Version

In this blog, we will discuss how a user can promote an AR-Invoice from Salesforce to Sage 100 ERP using GUMU™ Integration and Salesforce Lightning Components. Our product GUMU™ Integration is well known for the real-time bi-directional links which sync data from Salesforce to Sage ERP and vice versa. Using GUMU™ users can promote Invoices from Salesforce… Read More »

The @track Decorator Is No Longer Required for Lightning Web Component but with one Exception

We are referring here to Spring ’20 Release Notes available on the Salesforce help section. We have removed the @track decorator from all the variables in our test project, but it was not working for the few variables. After more detail, we found one exception while removing the @track decorator, i.e., when using objects. So,… Read More »

How to create a dynamic multi-filter object in Salesforce-Part II

In continuation to our previous blog, where we worked on the UI for the dynamic multi-filter object. In this blog, we will be working on the back process/functionality. GetFieldsListController.js GetFieldsHelper.js Output: – Filter-input When you hit that Add button, it will get added to the filter, as shown in the image below. Multi-filter Added In… Read More »