You need to sign in to do that
Don't have an account?

Trigger Logic sequence
Hi,
I have account object when i enter A in Acc filed i need to display A in contact field and when enters B then need to display like A,B
So what is the logic in trigger code?
Thanks in Advance.
I have account object when i enter A in Acc filed i need to display A in contact field and when enters B then need to display like A,B
So what is the logic in trigger code?
Thanks in Advance.
I am assuming there is already a method that copies field data from Account to contacts on the insertion of account.
The logic is to append the new data from account to the existing data in the contact's field.
We need to read changes on account and update the child contacts accordingly, so the trigger should be written on the Account object on the update event. Please check the sample code below. Feel free to comment or correct.