cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How do I determine which reports use a given data source?

Former Member
0 Likes
2,848

total newbie and completely lost on this site so forgive me if this is an inappropriate question but I'm in a pickle -

How do I determine which published Crystal Reports use a given data source?

I have BO XI R2

Thanks

Jamie Simpson

View Entire Topic
indraneelchatte
Product and Topic Expert
Product and Topic Expert
0 Likes

You need to connect to the CMS Database to query the CI_INFOOBJECTS table.

You can try this query also " SELECT SI_NAME, SI_PROCESSINFO.SI_LOGON_INFO FROM CI_INFOOBJECTS WHERE

SI_INSTANCE = 0 AND SI_NAME = 'Report Name' "

Former Member
0 Likes

You need to connect to the CMS Database to query the CI_INFOOBJECTS table.

The CMS database does not contain the CI_INFOOBJECTS table. CI_INFOOBJECTS is a pseudo-table held in CMS memory only. It is not an actual table on the database. CI_INFOOBJECTS can only be accessed via the SDK and Query Builder. One only needs to logon to the CMS and not the CMS database to access CI_INFOOBJECTS.