Amit Singh

Amit Singh

Amit Singh aka @sfdcpanther/pantherschools, a Salesforce Technical Architect, Consultant with over 8+ years of experience in Salesforce technology. 21x Certified. Blogger, Speaker, and Instructor. DevSecOps Champion

What is test class in Salesforce?

In summary, test classes are an essential part of the development process in Salesforce. They help to ensure code quality, catch errors early, meet code coverage requirements, facilitate collaboration, and facilitate code maintenance. Table of Contents Introduction In Salesforce, a…

Send an Email using Apex Trigger?

Table of Contents Introduction to Apex Scenario Develop an Apex Trigger to send the email to the Account owner when the Account is Created within Salesforce and Account does not have the phone and industry field populated. Also, create a…

Create a Rollup-Summary trigger in Salesforce?

Table of Contents Prerequisite Create a Custom Field on the Account Object “Number of Contacts” with a Number Data Type that does not have any decimal point in it. Introduction to Apex Trigger Scenario Requirement (Roll-up Summary Trigger) Develop a…

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…

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…