How to find out the retire date of a process?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
24-01-20 09:09 PM
In the Control Room, is there a way to find out when a particular process was retired and when it was last run? Thanks!
------------------------------
John L
------------------------------
------------------------------
John L
------------------------------
4 REPLIES 4
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
28-01-20 10:14 AM
The last run date will be in the list of session in control room, assuming the last session record has not been archived. You can apply a filter on the process name to list all the sessions for that process.
Retirement is a status rather than a date, so you won't find a date in control room, or as far as I can see, in the DB.
------------------------------
John Carter
Professional Services
Blue Prism
------------------------------
Retirement is a status rather than a date, so you won't find a date in control room, or as far as I can see, in the DB.
------------------------------
John Carter
Professional Services
Blue Prism
------------------------------
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
29-01-20 08:59 PM
Thanks John!
------------------------------
John L
------------------------------
------------------------------
John L
------------------------------
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
04-02-20 08:40 AM
If you are good with SQL, You can probably write a SQL query on [BPAAuditEvents] table
SELECT [eventdatetime]
,[sNarrative]
,[comments]
FROM [dbo].[BPAAuditEvents] where sNarrative like '%retired%' order by [eventdatetime] desc
------------------------------
Vivek Goel
CoE Lead Architect
Asia/Singapore
http://www.rpatools.com/
"If you like this post, please press the "Recommend" Button.
------------------------------
SELECT [eventdatetime]
,[sNarrative]
,[comments]
FROM [dbo].[BPAAuditEvents] where sNarrative like '%retired%' order by [eventdatetime] desc
------------------------------
Vivek Goel
CoE Lead Architect
Asia/Singapore
http://www.rpatools.com/
"If you like this post, please press the "Recommend" Button.
------------------------------
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
04-02-20 02:19 PM
Thanks Vivek!
------------------------------
John Lee
------------------------------
------------------------------
John Lee
------------------------------
