Handling Events of LWC in Aura Component

In this post, we will implement the functionality of Handling Events of LWC in Aura Component. We can use the Lightning Web Components inside Aura Component but vice versa is not possible. Meaning, we cannot use Aura Component inside Lightning Web Components. We can use events to communicate between the Aura Component and Lighting Web … Read more

Display Toast Notifications in LWC

In this post, we will implement the functionality to display Toast Notifications in LWC using ShowToastEvent adapter from lightning/platformShowToastEvent module. Using Lightning Web Components, we can display the same type of Toast Notifications as in Lightning Aura Component. Let’s just get right into the implementation. This is going to be a quick one. Implementation We … 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

Call Apex Method in LWC (Imperatively and Wire Service)

In the previous post, we created and displayed the record using Lightning Data Service in Lightning Web Component which you can check here. In this post, we will implement the functionality to Call Apex Method in LWC(Lightning Web Component) using Wire Service and Imperatively. There are two ways to call Apex method from Lightning Web … Read more

lightning-record-form in LWC

In this post, we will implement lightning-record-form in LWC to create, edit, and view the record, all-in-one using a single base component. In the previous post, we implemented the same using lightning-record-edit-form to create the record and lightning-record-view-form to show the record which you can check here. This is probably the last post about Lightning … Read more

lightning-record-edit-form and lightning-record-view-form in LWC

In previous posts, we implemented Lightning Data Service in Lightning Web Components using lightning/uiRecordApi and Wire service to create and view records respectively. Click here to check how to create a record using Lightning Data Service. Click here to check how to view records using Lightning Data Service. In this post, we will create and … Read more

Get Record in LWC using getRecord of uiRecordApi

In this post, we will implement the functionality to Get Record in LWC using getRecord of uiRecordApi module with the Wire Service. In the previous post, we implemented the functionality to create a record using createRecord of uiRecordApi module which you can check here. Let’s just hop into the implementation. Implementation In this implementation, we … Read more

Create Record in LWC using createRecord of uiRecordApi

In this post, we will implement the basic functionality to create records in LWC using createRecord of uiRecordApi module. Let’s get into the implementation. Implementation In this implementation, we will create an Account record. We will display the Account record Id in the Alert box once the record is created successfully. Create a lightning web … Read more

Log in to Salesforce using Google Account

There might be a requirement where you want your users to log in to Salesforce using a Google account. In this post, we will implement the Single Sign-On with Google as an Authorization Provider so that we can log in to Salesforce using a Google account. Steps to Implement First, we need to enable My … Read more