- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 08:02 AM
Hello Everyone,
I have a requirement to trigger notification to approver for every 24hrs if there is no action taken until the approval is rejected or approved. I am triggering the approvals to Requested for's manager in the workflow for RITM using Approval - user activity, not sure how to proceed further.
Below is the workflow for approvals and general notification
Could anyone please guide me.
Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 10:02 AM
Hello @Divya V ,
along with the approval activity create a timer in parallel and add if condition to check the state of approval. If it is in approval trigger it to back to the notification.
Best Regards,
Nayan Dhamane
ServiceNow Community Rising Star 2023.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 10:07 AM
A common method for something like this is to have a scheduled job that runs and finds all pending approvals and sends a reminder notification, but that only works if you want this to happen for all items with approvals, etc.
If you want this contained to a specific item (or items) one method you can use is a wait timer and some actions in a loop that fire concurrently with your approval task. When an approval is needed, fire the approval but then also fire a timer for 24 hours. After the timer you check to see if the Approval is still pending, if it is not, you exit the loop and connect to the same path as approved (or you could just not connect anywhere) If the approval is still pending you send a notification and loop back to the wait timer for another 24 hours.
Once the request is approved, timer will stop being called. If the request is rejected while the timer is running, it will be cancelled.
This is a mock up of what I've used in the past.
Michael D. Jones
Proud member of the GlideFast Consulting Team!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 09:57 AM
You could write a script to do this. I have a scheduled job that checks the open approvals, and if they aren't handled in x days, it triggers a custom event that sends a notification.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 10:02 AM
Hello @Divya V ,
along with the approval activity create a timer in parallel and add if condition to check the state of approval. If it is in approval trigger it to back to the notification.
Best Regards,
Nayan Dhamane
ServiceNow Community Rising Star 2023.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 10:07 AM
A common method for something like this is to have a scheduled job that runs and finds all pending approvals and sends a reminder notification, but that only works if you want this to happen for all items with approvals, etc.
If you want this contained to a specific item (or items) one method you can use is a wait timer and some actions in a loop that fire concurrently with your approval task. When an approval is needed, fire the approval but then also fire a timer for 24 hours. After the timer you check to see if the Approval is still pending, if it is not, you exit the loop and connect to the same path as approved (or you could just not connect anywhere) If the approval is still pending you send a notification and loop back to the wait timer for another 24 hours.
Once the request is approved, timer will stop being called. If the request is rejected while the timer is running, it will be cancelled.
This is a mock up of what I've used in the past.
Michael D. Jones
Proud member of the GlideFast Consulting Team!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 10:20 AM
That would also work! For our purposes, we are dot-walking to determine if the approvals are the ones we want to send reminders for, but arguably, we send the reminders for almost all of them, so it's not as restrictive as this use case. If you are planning to just do the reminders for these approvals, then the workflow solution is a good way to go.