cancel
Showing results for 
Search instead for 
Did you mean: 

How to find out the retire date of a process?

JohnLee
Level 3
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
------------------------------
4 REPLIES 4

John__Carter
Staff
Staff
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
------------------------------

Thanks John!

------------------------------
John L
------------------------------

VivekGoel
Level 10
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

14255.png


------------------------------
Vivek Goel
CoE Lead Architect
Asia/Singapore
http://www.rpatools.com/
"If you like this post, please press the "Recommend" Button.
------------------------------

Thanks Vivek!

------------------------------
John Lee
------------------------------