• Abhishek Patil 37
  • NEWBIE
  • 0 Points
  • Member since 2023

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 0
    Replies
public class updateHandler {
    
    public static void updateaccHandler(list<account> upac, map<ID, account> mapaccmap){
               
             for(account acc : upac){
                 if(acc.phone != mapaccmap.get(acc.ID).Phone){
                     acc.description = 'Phone is updated  , old phone mumber is'+ acc.mapaccmap.get(acc.ID).phone +' & new phone is :'+ acc.phone;
                                        
                                        
                 }
             }
    }

}