- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-13-2015 09:21 PM
I have a number of Service Catalog requests waiting for approval. My email notification did not fire bec of missing condition.
Is there a way to manually push or fire the notification to the approvers so they can approve them? Most of our approvers do not login to ServiceNow, instead they approve requests via email
Thanks!
Solved! Go to Solution.
- Labels:
-
Analytics and Reports
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-13-2015 10:57 PM
Hi,
just run a background script like below
var gr = new GlideRecord('sc_req_item');
gr.addQuery('state','work in progress'); // replace work in progress with proper backend value of the WIP state
gr.query();
while(gr.next())
{
gr.update();
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-13-2015 09:33 PM
Hello,
You can do this with email client, and quick message I guess.
You will need to enable email client on 'sc_request' or 'sc_request_item' table. Once done, you can either configure quick message to send approver reminder / approval mail to approver.
Enabling the Email Client - ServiceNow Wiki
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-13-2015 09:44 PM
Hi Jocelyn,
Have you fixed the condition on the notification?
Are the events still available? They are kept for 7 days.
If the answer to both questions is yes, perhaps you could reprocess the event and persuade the notification email to fire.
Check this out in sub prod first?
Best Regards
Tony
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-13-2015 10:57 PM
Hi,
just run a background script like below
var gr = new GlideRecord('sc_req_item');
gr.addQuery('state','work in progress'); // replace work in progress with proper backend value of the WIP state
gr.query();
while(gr.next())
{
gr.update();
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-21-2015 08:36 PM
Thanks Alex! Background script worked!!