- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2024 08:44 AM
Hi @unknown ,
Do the following.
1. Create a schedule job with below script.
var gr = new GlideRecord('change_request');
gr.addEncodedQuery('due_dateRELATIVELT@minute@ago@45');
gr.query();
while (gr.next()) {
gs.eventQueue('your event name', gr, gr.assigned_to, '');
}
2. Create event based notification: you can get help from here in case you dont know: https://servicenowwithrunjay.com/email-notification/
-------------------------------------------------------------------------
If you found my response helpful, please consider selecting "Accept as Solution" and marking it as "Helpful." This not only supports me but also benefits the community.
Regards
Runjay Patel - ServiceNow Solution Architect
YouTube: https://www.youtube.com/@RunjayP
LinkedIn: https://www.linkedin.com/in/runjay
-------------------------------------------------------------------------