Hi everyone,
I am working on a report, where I find all the documents in ADS and then delete some of them. In oder to find which documents should be deleted, I have to check the attributes of the ADS documents, for example the creation time
I know there are some functions that might be useful, but how to find the object with format ADSDocumentAttribute at first?
hope someone can give some suggestions :)
Thanks a lot.


Robert Goldenbaum on
Well, you have to go over some steps:
oADSDoc_1 = oADSRepository.getDocumentByLink(oObjDef.Attribute(Constants.AT_ADS_LINK_1, g_nLoc[0]).getValue());
oADSContent_1 = oADSDoc_1.getDocumentContent();
oMetaInfo_1 = oADSDoc_1.getDocumentMetaInfo();
aoAttr = oMetaInfo_1.getAttributes()
Everything from the ARIS help :-)
Regards,
Robert