Category Developers

Salesforce Developers are professionals who build and customize applications on the Salesforce platform. They use tools like Apex (a Java-like programming language), Visualforce, and Lightning Web Components to create custom solutions that help businesses automate processes, manage data, and improve customer experiences.

Handler & Dispatcher in Apex Triggers?

So far in the previous blogs/videos we have only talked about how to write the apex trigger and we have developed all the code inside the apex trigger. However, as a best practice, we should not write the code inside…

How to Calculate discount for opportunity?

How to Calculate discount for opportunity in Salesforce based on percentage field? Table of Contents Introduction to scenario → Apex Trigger 5 Prerequisite Create a Custom field on Opportunity “Discount” and the data type of this field should be percent.…

Update Account Billing in Shipping address?

Apex Trigger Scenario → Apex Trigger 2 Develop an Apex Trigger so that every time when any account is created or updated then Set the Value of the Billing Address is to Shipping Address. Shipping Address ShippingStreet ShippingCity ShippingState ShippingPostalCode…

Practical Implementation of Apex Triggers?

In the previous blog post/session, we learned the basics of apex trigger. If you have missed the important first step here is the link for you. Table of Contents Introduction Before we start solving the problems, we would like to…