Tag Archives: salesforce lightning component

Salesforce Flows vs. Apex Triggers: Making the Right Choice for Your Business Needs

There is a long-standing debate between Flows vs. Apex Triggers when it comes to Salesforce automation, but the answer is not straightforward. Both approaches can fulfill business requirements, though some scenarios necessitate the use of code. The challenge arises in complex cases where a Consultant or Architect must determine whether a flow or trigger is… Read More »

How to identify duplicate records using the Salesforce report

In this blog post, we will explore the process of how to identify duplicate records using the Salesforce reports. By generating a Salesforce report, users can efficiently pinpoint duplicate records within their Salesforce database. This approach helps in maintaining data accuracy and streamlining data management processes. Resolving duplicates enhances data quality and optimizes efficiency in… Read More »

Mastering Mobile Navigation: Salesforce’s NavigationMixin Unleashed

Salesforce’s NavigationMixin – In the rapidly evolving realm of mobile app development, user experience holds paramount importance. Every tap, swipe, and interaction plays a significant role in sculpting an intuitive and fluid journey for users. Salesforce, with its comprehensive ecosystem and cutting-edge tools, remains at the forefront of empowering developers to craft outstanding mobile experiences.… Read More »

How to invoke an LWC Component function from Aura Component

This blog explains how to call a LWC component function from an Aura component when an Aura event takes place. If we want to Invoke LWC function, we need to follow the steps mentioned below: The code below is an example where we have a lightning button, ‘Call LWC Function,’ which invokes the LWC component function… Read More »

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

This blog post explains how to get the current record ID in the Lightning web component. The Record Id property is utilized on the Lightning record page, and it is set to the current record Id. We are using this property in a JavaScript class using a @api decorator, and we need to define recordId… Read More »

How to invoke lightning Auto launched Flow from the Apex class

We will talk about how to call a Lightning Auto-launched flow from the Apex class in this blog post. 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 »

Navigation Service in LWC

In this blog, we are going to discuss “Navigation Service in LWC” which is used to create a new account from an Account record page. This is not just limited to creating a new account you can perform various other tasks with it like going to the account list view, Creating a contact from the… Read More »

How to Use Static Resources In LWC

You will learn more about static resources and their applications in Salesforce by reading our blog post on “How to Use Static Resources In LWC.” Generally speaking, static resources let you upload files (like.zip and.jar archives), graphics, and style sheets that you may use as references on a Visualforce page. Steps on “How to Use… Read More »

How to Create Quick action button using lightning web component

In this blog, we will learn How to Create Quick action button using lightning web component. To create the quick action button in the salesforce we have to perform the following steps: Create the Js-Meta-Xml File using the following code. JS-META-XML File in lightning web component Open Salesforce and go to the setup->Click on Object… Read More »

Displaying Types of Toast Message in Lightning Web component

In this blog, we are going to discuss on Displaying Types of Toast Message in Lightning Web component which pops up an alert of Success, error, warning, and Info message for users. A Toast message simply provides information to alert users. Toast messages i.e., ShowToastEvent also support Experience Builder sites but are not supported in… Read More »