BusinessObjects Board

Help on Query Builder

Hi All,

Could you please help me to get the SQL to get below information from the Query Builder.

Reports which are in Personal folders
DeskI Report name
Folder name (Inbox / Favorites)
User Name
DP type
Universe name if DP is Universe

Thanks,
Muthu.


msaru (BOB member since 2012-07-19)

It’s not quite as easy as all that.

You seem to want to audit each user’s personal documents

first you’ll need all the users

SELECT SI_CUID, SI_NAME FROM CI_SYSTEMOBJECTS WHERE SI_KIND = ‘User’

Then you’ll have to go through each user and get their folders, and the documents within each folder.

HOWEVER, for a given DeskI report - information is not stored in the CMS about the dataproviders within the document.

If you want to know that, you’ll have to open each document with the SDK and interrogate it, then save the information off to your own database table/text file.


Hayden_Gill :australia: (BOB member since 2002-08-15)

msaru,
This utility can help you with the above:


Marek Chladny :slovakia: (BOB member since 2003-11-27)