Hello,
Can anyone help me to create a query to show the documents that are opened after they are placed inside the recycle bin.
Currently i have:
Select
d.ownerid,
d.parentid,
d.dataid,
k.firstname,
k.middlename,
k.lastname,
d.aclcount,
d.name,
d.subtype,
dad.auditstr,
dad.performerid,
dad.eventid,
dad.valuekey,
dad.auditdate
from dtree d, dauditnew dad, kuaf k
where
k.id = dad.performerid and
dad.auditstr = 'Fetch' and
d.dataid = dad.dataid
start with d.dataid=30426565
connect by ABS(d.parentid) = PRIOR d.dataid
The problem is that also the documents are showed that are opened before they where placed into the recycle bin
Any help would be apreciated
Tom