Hi Guys!!
Its been long time since I have been here. My obsession with salesforce has taken next level.
Still, I love writing triggers. I know all these are very small triggers. But it may help beginners who are trying to connect to salesforce.
Anyways, lets start with another trigger(Only for beginners) .
Scenario:-
I have to replicate a field of parent object to all its child records. It is very simple scenario for experience people.
Here is the code for you folks....
Remember :- There are may ways of doing a job . You may find more simpler and efficient way. keep Exloring!
Happy coding
Cheers
Ankush
ankushsalesforce@gmail.com
Its been long time since I have been here. My obsession with salesforce has taken next level.
Still, I love writing triggers. I know all these are very small triggers. But it may help beginners who are trying to connect to salesforce.
Anyways, lets start with another trigger(Only for beginners) .
Scenario:-
I have to replicate a field of parent object to all its child records. It is very simple scenario for experience people.
Here is the code for you folks....
Trigger replicateFieldsOnChild on Parent (After update){
Set<id> setOfParentId = new Set<Id>();
for(Parent pt : trigger.new){
setOfParentId.add(pt.id);
}
List<Child> listChild = new List<Child>([Select id, parentId from child where ParentId in: setOfParentId]);
List<Child> updatedlistChild = new List<Child>
for(Parent pt : trigger.new){
for(Child ch : listChild){
ch.field = pt.field;
updatedlistChild.add(ch);
}
}
Update updatedlistChild;
}
Remember :- There are may ways of doing a job . You may find more simpler and efficient way. keep Exloring!
Happy coding
Cheers
Ankush
ankushsalesforce@gmail.com