vote up 0 vote down star

How to list universe objects from a webi report using the Business Objects SDK for XIR2?
Is there is an automated way to do it without the sdk?

With the SDK I've been able iterate through webi report and universe collections but do not see a native way to retrieve either the query objects or the report query.

flag

75% accept rate

2 Answers

vote up 1 vote down

I have had to use the administrative query tools (Build a query -- very rudimentary) to pull data from the CMS. One of the things I see in the output is data connections and SQL statements. This is technically not using the SDK (er, you're using their built in access to the InfoStores), but you will probably need SDK documentation to figure out what you're even looking for. Their implementation is pretty crude, and if you get the query wrong, it doesn't tell you what is wrong with it. If you get the query slightly wrong, it may return a 'no records found' statement.

Records returned are multi-level... if an field in the query can refer to another table, you may get one field with the result of the subquery in it. And some of those fields may have subquery results. It's a pain to figure out, but once you can figure the fields, you can extract data (manually) from it.

link|flag
Yea I figure they don't provide the report objects in their SDK to make it more difficult for automated migration to other products. :p – jms Jun 19 at 1:13
Can you provide a sample query that can be used with the BOXI query builder that outputs the tables or SQL statements? I can get universe to table relationships and reports to universe relationships, but I can't get report to table relationships. – QWERTY Aug 12 at 22:56
vote up 0 vote down

Using Query Builder, the following query will return the SI_ID values for each report associated with a universe:

SELECT * FROM CI_APPOBJECTS WHERE SI_KIND='Universe'

Using Query Builder, the following query will return WebI report names based on the ID:

SELECT SI_NAME,SI_DESCRIPTION, SI_ID,SI_AUTHOR,SI_PARENT_FOLDER,SI_UNIVERSE,SI_HAS_PROMPTS FROM CI_INFOOBJECTS WHERE SI_ID IN (xxx,xxx,xxx)

I don't see a way to combine the two together to just show universes with reports. Also, I don't see a way to get this data into Business Objects itself as a WebI report.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.