- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2025 09:09 AM
Hi,
we need to send a weekly email remainder to each assignment group manager. The email should include of all past SLA incidents that are currently in breach for their respective team.
what is the best ServiceNow approach (e.g., scheduled reports, flow designer, script include) to implement this weekly SLA breach notification. Are there any OOTB features for this, and what's the most effective way to aggregate and present breached incidents per manager for the email content, while considering performance?
Any guidance, examples, or links to relevant documentation would be greatly appreciated!
Thanks in advance for your help!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2025 09:47 AM
Hi @PRAVALIKAREDDYL ,
To manage SLA breaches, try creating a weekly email digest using ServiceNow Flow Designer. This logic allows you to group breached incidents by assignment group and send summaries to each manager. By Flow Designer, you can automate the process, ensuring that managers receive timely updates without manual intervention. Add condition as “has_breached = true” records from the task_sla table, groups them by “assignment_group.manager”...
Kaushal Kumar Jha - ServiceNow Consultant - Lets connect on Linkedin: https://www.linkedin.com/in/kaushalkrjha/

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2025 09:41 AM
Hi @PRAVALIKAREDDYL ,
We can do it using Scheduled flow (without any code)
1)Create a Scheduled flow "Runs weekly"
2)Look up "Task_SLA" table where Has breached true, created this week, task type is incident
3)Send email to the Assignment group manager (This would send multiple emails to the manager if the SLA breached happened multiple times for an Assignment group)
Flow :
Look up record logic :
Email logic:
Hope it helps, if so
Thank you,
Hemanth
Certified Technical Architect (CTA), ServiceNow MVP 2024, 2025
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2025 11:48 PM
Thanks for the reply.
Actually, my requirement is - A weekly email notification is sent to each assignment group manager of any queue with an incident in the breach of SLA and all the breached incidents for the managers team are included in the notification
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2025 09:47 AM
Hi @PRAVALIKAREDDYL ,
To manage SLA breaches, try creating a weekly email digest using ServiceNow Flow Designer. This logic allows you to group breached incidents by assignment group and send summaries to each manager. By Flow Designer, you can automate the process, ensuring that managers receive timely updates without manual intervention. Add condition as “has_breached = true” records from the task_sla table, groups them by “assignment_group.manager”...
Kaushal Kumar Jha - ServiceNow Consultant - Lets connect on Linkedin: https://www.linkedin.com/in/kaushalkrjha/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2025 11:48 PM
Thanks for the reply,
Actually, my requirement is - A weekly email notification is sent to each assignment group manager of any queue with an incident in the breach of SLA and all the breached incidents for the managers team are included in the notification