Trigger # 1 – Calling Class from Trigger trigger CreateAccount_Trigger on Account (before insert) {for(Account a : Trigger.New){a.Description = ‘New description’;CreateOpportunity.insertOpp();}} Trigger #2 trigger AccountError_Trigger on Account (before update){for(Account a : Trigger.New){a.addError(‘Hey! You are not authorized to perform this action.’);}} Trigger # 3 trigger AccountPhoneError_Trigger on Account (before update)/*Developer: Bashir FadlDate: 5/12/2023Description: This trigger shows […]
