- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 11:26 AM
HI community,
I got stuck with an requirement, where I created a record producer on alert table. When the record producer is updated it will create a record in the "Alert" table. There it will create the incident record as well.
I am trying to auto populate the assignment group of the incident record as per the below condition.
- When the source on the alert table is zabbix.
- Accordingly it has to populate the assignment group on the incident form as Zabbx.L1 (Group exists)
Need some hints on it, I guess it can be done on BR and client scripts. What's the best practice and need some help on the scripting as well.
TIA
#Recordproducer #AlertTable #AutoAssignmentGroup
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-08-2024 11:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 12:21 PM
Hi @Madhan27 ,
You can achieve this by creating a Business Rule on the Alert table. The BR will trigger when a new record is inserted and the source is 'zabbix'. Then in br script update the related incident's assignment group to 'Zabbix.L1'.
Mark it as helpful and solution proposed if it serves your purpose.
Thanks,
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 12:25 PM
what if we have multiple sources??? According to the source I have to populate the assignment group. @Anand Kumar P
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 12:31 PM
Hi @Madhan27 ,
You can achieve this after Insert BR but before glide recording to Incident record and updating Assignment rule there should be relationship between Incident table and alert table, so could you please let me know if there is any field in incident which stores alert number ?
Please mark this comment as Correct Answer/Helpful if it helped you.
Regards,
Swathi Sarang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 12:34 PM
Yes, There's a relation b/w the incident and alert table. On alert record the incident number will acknowledge on the task field as you can see in the first screen shot. @swathisarang98