Category: Salesforce
How to send data from the Parent component to the Child component in LWC
The Lightning Web Component (LWC) is widely used over the salesforce platform to build components that can work dynamically and are a combination of Custom HTML and modern JavaScript. Depending on the need, they can be displayed over Home Page,
MFA in salesforce
MFA stands for Multi-Factor Authentication, which is a security feature that requires users to provide multiple forms of verification to access a system or application. While Salesforce does not offer a specific Master of Fine Arts (MFA) program, it does
How to call API from flow in Salesforce
To call an API from a flow in Salesforce, you can use the Apex action or the HTTP request action. Here is a step-by-step explanation of how to do it: Create a new flow or open an existing flow in
Lightning Spinner Salesforce
A lightning Spinner displays an animated spinner image to indicate that a feature or customization is loading. This component can be used when retrieving data or anytime when the operation takes time to complete so meanwhile, we can display a
Invalid Field error: No Such column on sobject (Salesforce Object)
Invalid Field error: No Such column on sobject (Salesforce Object) Description: While working on a feature to sync data in Salesforce using rest api in python, I got the following error: And the problem was that the field already exist
How to send an email to a public group using Flow in Salesforce
Salesforce flow also allows us to send an email to users and we can also send an email to any public group. To send an email to any public group we need to follow the following steps: First, we need
How to overlap menus over scrollable regions in Salesforce
Sometimes there is a requirement to show a lot of columns in a related list which can cause it to go over the boundary of the page so to fit that data we add a scroll to the enclosing div.
How to Mass Upload Custom MetaData Records in Salesforce Using CSV
Salesforce CLI provides a feature to mass insert Records into salesforce using cmdt commands. We can easily insert mass records into salesforce from a CSV file for that we need to follow the following steps. Step 1: First, we need
How to Expand and Collapse Multiple Accordion Sections using a Single Button/Icon in LWC
Lightning Accordion Lightning Accordion is used to display the content in sections that can be displayed and hidden in a single click. There can be multiple sections in an accordion that can be expanded or collapsed independently of each other,