CodeBuilder

Apex trigger to add dr. Salutation on lead record. - Salesforce

Handler class: public class LeadsTriggerHandler { public static void createLead(List<Lead> lstLead) {      for( Lead ldcreate: lstLead)     {        if( ldcreate.Is_Doctor__c == True)        {           ldcreate.Salutation = 'Dr.';        }    } } } Trigger: trigger...

Trigger to avoid recursive trigger call on contact object (create contact) - Salesforce

Handler class: public class ContactInsertHandler {     public static void createContact()     {         Contact cont = new Contact();         cont.LastName = 'Dharmik';      ...

Apex trigger to sum up (Count) amount from all the related Opportunity and set in custom field.

Handler class: public class CustomRollUp {             public static void docount()     {         list<Opportunity> setopportunity = [ select Id, Name, Amount from Opportunity where  ...

Apex trigger to set contact record detail same as account details - salesforce (i.e contact lastname = account lastname)

Handler class: public class AccountTrigger {     public static void createContact(List<Account> accounts) {                   List<Contact> contact = new List<Contact>();     &n...

Apex trigger to show error message if sum of Opportunity amount is greater then 100000 of logged in user.

Trigger: trigger LimitTotalAmountInOpportunity on Opportunity (before insert) {          LimitTotalAmountInOpportunityHandler.LimitAmount(Trigger.new); } Handler Class: public class LimitTotalAmountInOpportunityHandler { public static void LimitAmount(list<Opportunity> OpportunityList) {         double totalamount = 0;  ...