Write a trigger to update a contact when an account's phone number is changed.

AnswerBot
2y

Trigger to update contact when accounts phone changed

  • Create a trigger on Account object

  • Query for related Contacts

  • Update Contact phone field with Account phone field value

Rudra Chauhan
5mo
hi
Anonymous
1y

trigger UpdatePhone on Account (after update) {

Map<Id,Account> accToPhoneMap = new Map<Id,Account>();

for(Account acc : Trigger.new){

if(acc.Phone != trigger.oldMap.get(acc.Id).Phone){

accToPhoneMap.put(acc.Id,acc);

}

List<Contact> relatedContact = [Select Id,Name,AccountId, Phone from Contact WHERE AccountId IN :accToPhoneMap.keySet()];

for(Contact con : relatedContact){

con.Phone = accToPhoneMap.get(con.AccountId).Phone;

}

}

}

Backseat Engineer
3y

trigger createContact on Account (before update) {

MAP<Id,Integer> oldMap=new MAP<Id, Integer>();

List<Contact> condetails =NEW List<Contact>();

For(Account acc:trigger.old){

oldMap.put(acc.Id, ...read more

Anonymous
3y

trigger updatedcontact on Account (After Insert){

List<Account> acclist = new List<Account>();

List<Contact Conlist = new List<Contact>();

for(Account acc : trigger.new)

{

if(acc.Phone != trigger.old...read more

reshu gupta
3y

trigger updatedcontact on Account (After Insert){

List<Account> acclist = new List<Account>();

List<Contact Conlist = new List<Contact>();

for(Account acc : trigger.new)

{

if(acc.Phone != trigger.old...read more

Aviral Srivastava
3mo
REMEMBER NOT TO WRITE THE LOGIC INTO TRIGGER ITSELF!
Select
Add answer anonymously...

Top Salesforce Developer Interview Questions Asked at Deloitte

Q. What is the use of the @track decorator in Salesforce?
Q. Write a trigger related to after update.
Q. How many types of reports are there in Salesforce?
Salesforce Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
play-icon
play-icon
qr-code
Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+

Reviews

10L+

Interviews

4 Cr+

Salaries

1.5 Cr+

Users

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter
Profile Image
Hello, Guest
AmbitionBox Employee Choice Awards 2025
Winners announced!
awards-icon
Contribute to help millions!
Write a review
Write a review
Share interview
Share interview
Contribute salary
Contribute salary
Add office photos
Add office photos
Add office benefits
Add office benefits