You need to sign in to do that
Don't have an account?
vijay kumar 300
Trigger on Account
Hi All,
When ever new Account record is successfully created the create the corresponding contact record for the account with
account name as contact lastname
account phone as contact phone
When ever new Account record is successfully created the create the corresponding contact record for the account with
account name as contact lastname
account phone as contact phone
For your above requirement use below code, its working fine in my org.
Trigger Code:
Kindly mark it as solved if it helps you.
Best Regards,
Rakesh.T
All Answers
For your above requirement use below code, its working fine in my org.
Trigger Code:
Kindly mark it as solved if it helps you.
Best Regards,
Rakesh.T
Contact cont=new Contact();
cont.lastName=trigger.new[0].name;
cont.accountId=trigger.new[0].ID
insert cont;
}