Skip to main content
In the scenario that we have 2 similiar looking contacts but the Matching or Duplicate rule has not triggered, do we have the ability to merge these accounts? 

 

THanks! 

 

Minhaj Arifin 

 

 
답변 3개
  1. 2020년 9월 18일 오후 8:03
    You could use a quick apex annoynous code to merge them both.

     

    Account acc1 = [SELECT ID FROM Account WHERE ID = 'ID here'];

     

    Account acc2 = [SELECT ID FROM Account WHERE ID = 'ID here'];

     

    merge acc1 acc2;

     

    acc1 being the master record
0/9000