BusinessObjects Board

How to find out which WebI Reports are using which Universes

Hello,

We have about 400+ WebI reports and about 12 Universes. How do I get a list of all these WEBI Reports and what universes they are using in a single file?

something like this:

thanks


exile (BOB member since 2008-05-03)

Hi,

You cannot use the Query builder because you must run several queries.

Make a search on BOB there is a tool call webi scanner…

i have not yet tested myself so do let us know how it goes:

Return Webi Reports Connected to a Specific Universe

 SELECT
SI_NAME, SI_WEBI, SI_DATACONNECTION
FROM
CI_APPOBJECTS
WHERE
SI_KIND = ‘universe’ and SI_NAME = ‘Universe Name’  

The query above returns all the WEBI documents assigned to the Universe by specifying the following information:

SI_NAME: The name of the Universe.
SI_WEBI: The list of Webi documents assigned to the Universe by SI_ID.
SI_DATACONNECTION: The data connection assigned to this Universe.

To list the Webi report names run the following query:

 SELECT
SI_NAME
FROM
CI_INFOOBJECTS
WHERE
SI_ID IN (ID from SI_WEBI, ID from SI_WEBI) 

twenty5 (BOB member since 2008-01-22)

R bhai? mu-hahah (ahem guys, sorry)

Thanks.

These query can get you what you need.

[1] To get everything:

SELECT * FROM CI_INFOOBJECTS WHERE SI_KIND = ‘WebI’

[2] Partially important stuff

SELECT

SI_ID, – WebI Report ID
SI_NAME, – WebI Report Name
SI_DESCRIPTION, – WebI Report Description, if any
SI_UNIVERSE, – Universe ID
SI_OWNER, – Report Created By
SI_CREATION_TIME, – Created ON
SI_UPDATE_TS, – Last Updated ON
SI_LAST_RUN_TIME, – Last Run ON, if ever
SI_CHILDREN – Instances, if any

FROM CI_INFOOBJECTS

WHERE SI_KIND = ‘WebI’

GROUP BY SI_UNIVERSE

– ONLY Other problem is SI_UNIVERSE has 4 cells and the actually Universe ID is not the 1st cell, but on the 4th cell and thus the Group BY doesn’t really work very well.


exile (BOB member since 2008-05-03)

Hi Twentyfive,
I ran the same query (SELECT
SI_NAME, SI_WEBI, SI_DATACONNECTION
FROM
CI_APPOBJECTS
WHERE
SI_KIND = ‘universe’ and SI_NAME = ‘Universe Name’ ) but everytime it is telling me that ‘this is not a vlid query’. Could you please help me?


Philip (BOB member since 2006-03-02)

Try this query submitted by Mak 1. Works like a charm.


BoB LoblaW :us: (BOB member since 2007-10-23)