This wire adapter fetches picklist values for a specific field on an object, allowing you to dynamically populate dropdowns and other selection elements. import { LightningElement, wire } from ‘lwc’; import { getPicklistValues } from […]
Why sObject is not allowed in future as an argument?
As it is an asynchronous process, the sObject can change between the time you call the method and the time it executes. It may be possible that the argument will receive the older version and […]
What is SLDS?
What is SLDS? SLDS stands for -> Salesforce Lightning Design System. It is a CSS framework that helps designers and developers create better user interfaces for Salesforce applications. SLDS gives users access to the same […]
Can we call the future from Batch apex?
No, we cannot call future methods from batch apex. As they operate in different way. Mixing these can lead to unexpected behaviour.
Lightning Console Limitations
Lightning Console Limitations Lightning console apps are now in beta release, it does not support all the features of classic console app. It may take some more salesforce releases to compatible with some cool features […]
Marketing Cloud and Pardot – Comparison
Let’s start with the similarities between Marketing Cloud and Pardot – they are both marketing automation tools available in salesforce. The difference is that Marketing Cloud helps you engage with your customers, or as we call […]
Try Wave Analytics with a special Developer Edition org
You can’t use an existing Developer Edition org to try wave analytics. You must sign up for a special Developer Edition because it comes with a limited Analytics Cloud Wave Platform license and contains sample […]
What is Data Loader?
The Data Loader is an easy to use UI tool that helps you to load your data into Salesforce objects. The Data Loader can also be used to extract data from salesforce objects. If your […]
Future Methods – @future in salesforce Apex
A future method runs asynchronously in background. You can use future method if you have long-running operations(callouts to external Web services or any operation that runs in its own thread and time. Also you can […]