BoB LoblaW, Thanks for your help… Again I am confused… .
Ok this is my exact requirement -
There is a folder under Public folders and it contains some reports. Now I need to find Report Name, Report ID , Report CUID for those reports.
SI_ID for that folder is 1873. And I used the below query -
select si_name, si_parentid, si_id from ci_infoobjects where si_kind = 'Folder'
But when I use your query, it is not showing anything , means report names are not displayed. Can you please help?
Finally got it working… thanks to all. I did following things -
1.Go to the BO Query Builder Link
- System: SystemName
User Name: Administrator
Password: ********
3.Now first you need to find the SI_ID of a particular folder in which reports are present, so for that use the below query
SELECT SI_NAME, SI_PARENT_ID, SI_ID FROM CI_INFOOBJECTS WHERE SI_KIND = 'Folder'
Here search for the folder name, ABC & verify SI_PARENTID = 0 & note down the SI_ID
4.Now go back to the query builder & write below query
(SI_ID which you got from above query, is now SI_PARENTID for below queries)
SELECT SI_ID, SI_NAME, SI_CUID FROM CI_INFOOBJECTS WHERE SI_PARENTID = 1873 AND SI_KIND = 'WEBI' ORDER BY SI_NAME ASC
(For ABC reports)
Above query will give you the list of all reports in ABC folder & their Report_ID & Report_CUID.
aniketp (BOB member since 2007-10-05)