cancel
Showing results for 
Search instead for 
Did you mean: 

EP3 - WorkView - Undelete Objects - Any reports/reporting available?

Christian_Jones
Star Contributor
Star Contributor

Good day,

 

Is there a built-in OnBase report available to provide a list of all of the WorkView - Undelete Objects in "EP3 OnBase Studio | WorkView tab | Undelete Objects"  ?

 

Or is there a Reporting Dashboard or SQL query available

 

Or another method, i.e. export those Application, Class, Filter lists to excel? 

 

Are any of these available in EP4, EP5, EP6 or a future release?

 

 

Thank you,

Christian

1 ACCEPTED ANSWER

Bill_Schoby
Star Collaborator
Star Collaborator

Query hsi.rmObject and look at the field ActiveStatus.

0 = saved object

1 = inactive (created but not saved)

2 = deleted

 

You also have ObjectName and ClassID in the rmObject table so you can use those to refine your WHERE clause if you are looking for a particular object or class.

 

This should get you started:

 

SELECT top 10

c.className, o.*
FROM hsi.rmobject o
INNER JOIN hsi.rmClass c on o.classid = c.classid

WHERE o.activestatus = 2

View answer in original post

1 REPLY 1

Bill_Schoby
Star Collaborator
Star Collaborator

Query hsi.rmObject and look at the field ActiveStatus.

0 = saved object

1 = inactive (created but not saved)

2 = deleted

 

You also have ObjectName and ClassID in the rmObject table so you can use those to refine your WHERE clause if you are looking for a particular object or class.

 

This should get you started:

 

SELECT top 10

c.className, o.*
FROM hsi.rmobject o
INNER JOIN hsi.rmClass c on o.classid = c.classid

WHERE o.activestatus = 2

Getting started

Find what you came for

We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.