Dashboard / Reporting on Pending Approvals
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2014 02:02 PM
Has anyone created dashboard that shows the age of pending approvals?
For instance, a dashboard that shows outstanding approvals for 2/3.5/5 days along with the Approval type (Change, Requested Item, etc).
Right now, we just have a report that shows created relative on or after x amount of days. And Approval Start with RITM or CHG etc...
If any one has done something edgy and want to share some ideas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2014 02:09 PM
Not here, we just show outstanding approvals
I may look at as it could be useful, but initially I would look at styles and change one of the fields colours
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2015 05:34 AM
Pending Approval Request Email Notification. Scheduled Jobs
-------------------------------------------------------------------------------------------------
var queryString = "state=requested";
var approval = new GlideRecord('sysapproval_approver');
approval.addEncodedQuery(queryString);
approval.query();
while (approval.next())
{
event = "App.reminder";
gs.eventQueue("App.reminder", approval, gs.getUserID(), gs.getUserName());
}