Hi, we need to identify all docs which are older than 5 years in LiveLink (9.7.1 Version) which can be deleted. We will then use LAPI to delete the documents.
Could you have a look at my query to identify object IDs. I want to ensure only Documents are deleted and folder structure remains intact.
Select OWNERID, DATAID, PARENTID from DTREE
where OWNERID = '-2000' and SUBTYPE in ('144' ,'7771') and ModifyDate between <Date Range>
Thank You!