Hi,
I'm trying to delete all the reports that are older than 6 months from Content Store. This is a scheduled activity..which involves the creation of an .exe file.. this file runs in the background using a scheduler after startup of the server..the check is made daily..
My problem is how do I find the creation date of a Report using the Java code?
Any help would be appreciated..
Thanks,
Darren.
Hi! creationTime is a property of BaseClass and is searchable. You could construct a searchPath with a filter like [@creationTime<"2006-09-14T19:05:00.00"]. Appendix G of SDK docs shows searchPath syntax.
hth..jean