Automate processes for every app, experience, and portal with declarative tools. Expand flow-building options by developing custom Apex actions, Lightning web components, and Apex-defined data types, and by integrating with MuleSoft and other web services. Introduction of Salesforce Flows Flows provides declarative process automation. Declarative means low code developement, do not need write any line of code and you do developement. Salesforce Lightning flow is the name of product. Process builder and flow builder are name of the tools. If you want to create processes use processs builder. if you…
Read MoreCategory: Salesforce Tutorial
Count Number of Contacts on Account in Salesforce using Trigger
Hello everyone today we are going to discuss here how to Count Number of contacts on account in salesforce using Trigger. Salesforce Apex Trigger Code Best Practices: Create only one trigger per sObjectType. This makes it easier to maintain your code.Use logic-less triggers. Instead of writing all your logic in the trigger, delegate the logic to a handler class.Use context-specific handler methods. This makes it easier to understand what your code is doing.Avoid SOQL queries inside for loops. This can cause performance issues.Avoid hardcoding IDs. Instead, use custom settings or…
Read More