With Spring 22 Salesforce has also launch Migrate to Flow (beta) tool. So we can now migrate our existing workflow to flow. As Salesforce is planning to deprecate Workflow and Process builder in 2023. So its better we start this migration process.For the migration process we will use the standard tool provided by Salesforce. As…
Category: Cool Tricks
Data Export From Developer Console
Developer Console is very useful tool. We can perform many action in that which include perform SOQL, Execute Anonymous , Test Class and Debugging. While we can query data from Developer console but we can not do Data Export from Developer console. Today I will share a quick hack to easily do Data Export from…
Accessibility Check In SOQL Queries Using WITH SECURITY_ENFORCED
Security is very important doe any developer. In Salesforce we follow all guidelines related to security. Most of the security feature is handle by Salesforce. One of the common security feature is Object and Field level check. For this Salesforce introduce new feature WITH SECURITY_ENFORCED. Today we will check how we can use it. This…
Display Generic sObject in Lightning
In the last post we study how we can iterate map in Lightning. There is one more thing which we face many time is dynamic field binding. Visualforce wit dynamic field binding we can dynamically create field instance but in lightning this is a major limitation. Today we will see how we can use…
Iterate Map In Lightning
Usages of Lightning is increasing day by day. We face many challenge while doing development in Lightning. One of the challenge which I face recently is we can’t iterate map in lightning using aura:iteration. Map is commonly used collection type which provide Key value pair to easy binding of data. Today I will shae a…