• d
  • NEWBIE
  • 10 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 13
    Replies
 two field in contact Amount1 , Amount 2.The same fields are there in account .When a contact with created/edit/delete/undelete,update contacts amount1,amount2 on its related accounts amount1,amount2
  • March 10, 2023
  • Like
  • 0
trigger LocationTrigger on Student c (before insert) 2 List<College_cs col [SELECT Name, state c from College_c];

for (Student c stu:Trigger.new) {

for (College c coll:col){ if(coll.state_cstu.state__c){

stu.college_name_c=col1.Name:
}
}
}
}
 
  • October 19, 2022
  • Like
  • 0
 two field in contact Amount1 , Amount 2.The same fields are there in account .When a contact with created/edit/delete/undelete,update contacts amount1,amount2 on its related accounts amount1,amount2
  • March 10, 2023
  • Like
  • 0
trigger LocationTrigger on Student c (before insert) 2 List<College_cs col [SELECT Name, state c from College_c];

for (Student c stu:Trigger.new) {

for (College c coll:col){ if(coll.state_cstu.state__c){

stu.college_name_c=col1.Name:
}
}
}
}
 
  • October 19, 2022
  • Like
  • 0