Change the priority for the Primary Alert.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi All,
I am looking for a solution, "Once the alert correlation is completed, then the severity of the primary alert changes to the Critical."
When I am trying to achieve this by using Flow or BR, it changes the severity to critical and then revert back to the previous severity within a minute.
Kindly provide the method to achieve this functionality.
Thanks & Regards
Mirza Saquib Beg.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @MirzaSaquiB
share the BR, nobody cannot help you if you don't share it 😉
/* If my response wasn’t a total disaster ↙️ ⭐ drop a Kudos or Accept as Solution ✅ ↘️ Cheers! */
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @MirzaSaquiB
When alerts are correlated, ServiceNow updates the primary alert based on the underlying correlation logic.
If you try to change the severity via a Flow or Business Rule, the correlation engine may overwrite it back to the value it computed for the primary alert.
That’s why you see it briefly change to Critical and then revert.
Correct approach
You need to hook into the correlation logic itself, rather than post-correlation.
Use Alert Correlation Business Rule
- You can customize the rule that determines the primary alert severity:
if (current.isPrimary()) {
current.severity = 1; // Critical
}
This ensures the primary alert is created/updated with Critical severity, not modified afterward.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago - last edited 3 weeks ago
Refer this to understand the Alert Priority mapping process,
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0870754
If you are looking to set Alert Severity, use correlation rule to set the severity rather than BR or Flow.
If this helped to answer your query, please mark it helpful & accept the solution.
Thanks,
Bhuvan