Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. for(Case caseLoop : Trigger.new){
  2. Case oldCase = Trigger.OldMap.get(caseLoop.id);
  3. }
  4.  
  5. Public class className extends TriggerHandler{
  6. public override void afterUpdate() {
  7. afterUpdateLogics();
  8. }
  9.  
  10. public static void afterUpdateLogics(){
  11. for(Case caseLoop : (List<Case>) Trigger.new){
  12. ***Needs to get the old map here****
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement