- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2025 07:48 AM
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2025 08:18 AM
You can just schedule a report for this and schedule it to run every week on the same day.
This is not the whole thing but I think you get the idea.
The only issue with this method is that if you want it for more than group ABC you would have to create the report multiple times. Which is not ideal.
But you could use the above query in a scheduled job or possibly a flow and then a notification to do it for more groups.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2025 07:53 AM
Hi @vamshi2
You can do this in Flow Designer by using actions. First, look up records with the condition for P1, then P2, and finally P3, creating three different actions. For each record, create the notification and send it to the assignment group manager.
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]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2025 07:59 AM
Step 1: Create a New Flow
• Navigate to Flow Designer → Click New Flow.
• Name the flow: “Ageing Problem Ticket Alert”.
• Click + Add Trigger → Select Problem [problem] table.
• Set Trigger Conditions:
• State → is not → Closed
• State → is not → Cancelled
• Priority → is → P1, P2, or P3
Step 2: Add Conditions for Ageing Tickets
• Click + Add Action → Select If.
• Add Conditions:
• Priority = P1 AND Created Date ≤ 30 days ago
• OR Priority = P2 AND Created Date ≤ 45 days ago
• OR Priority = P3 AND Created Date ≤ 55 days ago
Step 3: Configure the Email Action
• Inside the If condition block, click + Add Action.
• Select Send Email.
• Configure the Email:
• Recipients: Add abc group
• Subject: [PRB Alert] Ageing Problem Ticket - ${current.number}
• Body: Whatever content you want to add
✔️ If this solves your issue, please mark it as Correct.
✔️ If you found it helpful, please mark it as Helpful.
—
Shubham Jain

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2025 08:18 AM
You can just schedule a report for this and schedule it to run every week on the same day.
This is not the whole thing but I think you get the idea.
The only issue with this method is that if you want it for more than group ABC you would have to create the report multiple times. Which is not ideal.
But you could use the above query in a scheduled job or possibly a flow and then a notification to do it for more groups.