답변 33개

Hi Ranga, Please check the below trigger.
Please check you any trigger you have on Account object which is creating opportunity ? If yes then please deactivate the trigger and try again.Please try to de-activate all other triggers and validation rules on Account object and try again.Let us know if that will helps you!Best Regards,Jyothsnatrigger AccountAddressTrigger on Account (before insert,before update) {
List<Account> acclst=new List<Account>();
for(account a:trigger.new){
if(a.Match_Billing_Address__c==true && a.BillingPostalCode!=null){
a.ShippingPostalCode=a.BillingPostalCode;
}
}
}