I am trying to retrieve Most accessed documents report, but i want only public folder reports and i don’t want any inbox and favorite folder located reports?
What should i give as query filter in the report to retrieve only public folder docs? Any help would be appreciated.
the following query lists all public folders basically all folders that have folder ‘23’ as an ancestor (23 is root folder) the inclusion of or si_id = 23 means that root folder is also returned
SELECT * FROM CI_INFOOBJECTS
WHERE si_kind = 'Folder' and (SI_ANCESTOR = 23 OR SI_ID = 23)