Today we will check how we can do error handling in Lightning Web Components (LWC). For this, we will create a utility method. Check my previous post for how we can share JavaScript code in Lightning Web Components and create a utility method. We will also use the Custom alert notification component to display the…
Author: Tushar Sharma
Share JavaScript Code in Lightning Web Components
Sometimes we need to share JavaScript code in Lightning Web Components (LWC). As code reusability is good feature and we can use same in LWC as well. To share JavaScript code between Lightning Web Components we need to create ES6 module. An ES6 module is a JavaScript file that explicitly exports variables or functions that…
SOQL FIELDS() Function
With Salesforce Spring 21 release, Salesforce has introduced SOQL Fields functions. The FIELDS() function lets us select groups of fields without knowing their names in advance. This function simplifies SELECT statements, avoids the need for multiple API calls, and provides a low-code method to explore the data in the org. This function is available in API version…
Salesforce Multi-Factor Authentication (MFA)
Salesforce Multi-Factor Authentication (MFA) is a secure authentication method that requires users to prove their identity by supplying two or more pieces of evidence (or “factors”) when they log in. One factor is something the user knows, such as their username and password. Other factors are verification methods that the user has in their possession,…
Salesforce Spring ’21 Release Notes: Quick Overview
So Salesforce Spring ’21 Release Notes are here. And this means lots of new and exciting features are coming. Although we have already covered few of them. So lets take a quick overview of all the upcoming features. Salesforce Spring 21 Release Notes points related to Salesforce Admin Lightning Flow Is Now Salesforce Flow The…
Pass Old Values From Flow To Apex
How we can call Apex from Flow? How we can pass Generic sObject From Flow To Apex? How to pass Old Values From Flow To Apex After Spring 21?
Get Old Values in Record Triggered Flow
Get Old Values in Record Triggered Flow from Salesforce Spring 21 Release. Get the old records data in Salesforce Lightning Flow.
Multi Column Screen Flow
Multi Column Screen Flow in now in Beta in Salesforce Spring 21 Release. Check how we can setup Lightning Flow for multi columns.
Salesforce Hyperforce: Move Data to Public Cloud
With the launch of Salesforce Hyperforce, Salesforce allows us to move our data and store that to any public cloud. Announced in the Dreamforce for you event, Hyperforce is a complete re-architecture of Salesforce designed to deliver an even more powerful and scalable platform to support the growth and success of Salesforce’s global customer base….
Visual Studio SOQL Builder
Visual Studio SOQL Query Builder is a VS code extension from Salesforce which we can use to create and run SOQL inside VS code. Using Visual Studio SOQL Builder we can see actual results without doing any guesswork. And we can do export records in JSON or CSV format. So if we need to take…