When parent incident gets closed, its associated child incidents should also get closed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2024 04:19 AM
Which BR should i use for this case ?
After or Async ?
Is it possible by using both BR's ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2024 04:45 AM
Hi @Parth_S ,
You can write before BR and use below script.
(function executeRule(current, previous /*null when async*/) {
// Add your code here
var childIncidents = new GlideRecord('incident');
childIncidents.addQuery('parent_incident', current.sys_id);
childIncidents.addQuery('active', true);
childIncidents.query();
while (childIncidents.next()) {
childIncidents.state = 7;
childIncidents.close_notes = 'Closed because the parent incident was closed.';
childIncidents.update();
}
})(current, previous);
-------------------------------------------------------------------------
If you found my response helpful, please consider selecting "Accept as Solution" and marking it as "Helpful." This not only supports me but also benefits the community.
Regards
Runjay Patel - ServiceNow Solution Architect
YouTube: https://www.youtube.com/@RunjayP
LinkedIn: https://www.linkedin.com/in/runjay
-------------------------------------------------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2024 04:56 AM
I echo with Ankur. The BR is OOTB to resolved the child incidents but closure will work on individual level.
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************