Valid CRT-450 Dumps shared by ExamDiscuss.com for Helping Passing CRT-450 Exam! ExamDiscuss.com now offer the newest CRT-450 exam dumps, the ExamDiscuss.com CRT-450 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com CRT-450 dumps with Test Engine here:
Access CRT-450 Dumps Premium Version
(205 Q&As Dumps, 35%OFF Special Discount Code: freecram)
Recent Comments (The most recent comments are at the top.)
A is correct because after inserting child Cases the after insert trigger is fired again for them, infinitely
D. Child case is created for each parent case in Trigger.new.
This means that for every new Case inserted (each entry in Trigger.new), a corresponding child Case is created and inserted with the same Subject and the ParentId set to the parent’s Id.
trigger CaseTrigger on Case (after insert) {
List<Case> childCases = new List<Case>();
for (Case parent : Trigger.new) {
Case child = new Case (ParentId = parent.Id, Subject = parent.Subject);
childCases.add(child);
}
insert childCases;
}
A is OK
A is correct