- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā05-05-2025 10:12 PM
I have one requirement. For P1 incidents created with assignmet group 'ABC' - then Incident Communication Plans also should have assignment group as 'ABC' How can i achieve this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā05-05-2025 10:31 PM
@manikanta ravel You can simply achieve this requirement with help of After Business rule on incident table by gliding a Incident Communication Plan( incident_alert) table.
Did got stuck in the script?, let us know.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā05-05-2025 10:35 PM
Below Async business rule will help achieve this.
var assignGroup = current.assignment_group;
var glideCommPlan = new GlideRecord('incident_alert');
glideCommPlan.addQuery('source_incident',assignGroup);
glideCommPlan.query();
if(glideCommPlan.next()){
glideCommPlan.setValue('assignment_group',assignment_group);
glideCommPlan.update();
}
If this solution helped resolve your issue, please consider marking it as helpful or correct.
This will assist others in finding the solution faster and close the thread.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā05-05-2025 11:53 PM - edited ā05-05-2025 11:57 PM
Hello @manikanta ravel ,
Please create a Business Rule as shown below. No scripting required.
Regards,
Robert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā05-05-2025 10:31 PM
@manikanta ravel You can simply achieve this requirement with help of After Business rule on incident table by gliding a Incident Communication Plan( incident_alert) table.
Did got stuck in the script?, let us know.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā05-05-2025 10:35 PM
Below Async business rule will help achieve this.
var assignGroup = current.assignment_group;
var glideCommPlan = new GlideRecord('incident_alert');
glideCommPlan.addQuery('source_incident',assignGroup);
glideCommPlan.query();
if(glideCommPlan.next()){
glideCommPlan.setValue('assignment_group',assignment_group);
glideCommPlan.update();
}
If this solution helped resolve your issue, please consider marking it as helpful or correct.
This will assist others in finding the solution faster and close the thread.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā05-05-2025 11:53 PM - edited ā05-05-2025 11:57 PM
Hello @manikanta ravel ,
Please create a Business Rule as shown below. No scripting required.
Regards,
Robert