Category: Salesforce
Create a Dynamic Lightning Datatable in Salesforce
Lightning Datatable is used to display the Salesforce data in a tabular form and has many standard features that can be applied to the records being displayed in the datatable. Generally, we create a datatable and use the hard-coded values
LWC using the aura component
Step 1: Launch the developer console and add a lighting component (also known as an aura component). Step:2 Fill in the details in the pop-up box below and click “Submit.” It will create a component like the one below. Download
Graph API in Salesforce
The Salesforce Graph API is a powerful tool that allows developers to access and manipulate data within Salesforce. It provides a unified interface for interacting with the Salesforce platform, allowing developers to quickly and easily build applications that integrate with
Salesforce Data Loader
Data Loader is used to import or export data in bulk. Use it to export, delete, update, or add records to Salesforce. The client application known as Data Loader must be downloaded directly to the desktop from the Data Management
How to avoid the recursive triggers in Salesforce
Recursive Trigger:- When a trigger is calling itself again and again, this situation is called a recursive trigger, or we can say that a recursive trigger performs the same process multiple times. If we don’t handle this recursive trigger, it
What is National Producer Number?
National Producer Number or NPN is a type of identifier assigned to individuals or businesses. Nowadays, It has taken place of the license number. NPN is issued or assigned specially to “insurance-related organizations or activities” to keep the track of
How to login to salesforce using session id?
We may also access Salesforce without having to enter a username and password. We may log into Salesforce using the session ID. To log in to salesforce using session-id follow the following steps: Step 1: execute this piece of code
Inheritance in Apex
Inheritance is a feature of OOPS that allows us to inherit the properties or methods of a class. The base class acts as a parent, the class that is inheriting is called the child class. The child class has access
Decorators in Lightning Web Component
The Lightning Web Component has three decorators. @api @track @wire @api: If we want to pass any variable from Parent component to child component then we use @api decorator. To pass data to the child component, we need to define