Does anyone know how to query these tables and extract a list of Groups, Users, etc??? (Like we could with previous versions of BO)
We need to be able to extract a list of Users and Groups they belong to (or have access to) as we have some dynamic objects in 6.5 universe that use the Supervisor security hierarchy, and naturally we would want to migrate this to XI or XIr2.
As I understand the XI Repository, you can’t query it like you could the BO 6.x (or earlier) repository. The information in XO is stored in XML files, which are then stored as blobs in the repository.
I am currently attending the BO XI server administration class and the instructor informed us that the repository is now encrypted thus no longer directly accessible through SQL . In order to access the information in the repository you must use the SDK. Although I just got done looking at the documentation available on the Business Objects Tech support site and could find nothing in the object model that would allow me to get information out of the repository. The fact that the repository is now hidden is a huge impediment to our organization upgrading to XI. I will be contacting my bo account rep to let him know what a problem this will be to us. If you find out any additional information please post it.
Here’s an alternative point of view. Is there any specific information that you need that you can’t get through the Administrative Tools, CMC, etc? One of the Administrative Tools is actually called Query Builder that lets you query Enterprise system properties.
I’m just learning BOE myself, so I have no bias or knowledge one way or the other. Us “BusObj Classic” users resorted to direct repository queries, because there was no other option. Clearly that’s not the case with BOE. Is it different? YES! Is it better or worse? I think that remains to be seen.
Thanks for the info I will check out the Query Builder Tool at class.
I frequently need to go to the repository to get reports on what universes or reports a given user has access to or to get counts of how many users had a given license type or which reports are used by which universe, ecta… Over the years I have developed quite a library of repository SQL and it was very helpful. It will be painful to no longer have that ability but if BOE can provided me that same information in an even more accessible way I will be willing to adapt.
There is a beta version of a tool called Repository Explorer where you can see the users, servers, categories, folders, events,…and the XML estructure of each object of the repository. It’s supossed to appear in the release 2 of the product.
I think that with this tool and the SDK you could query all the information of the repository. I show you the XML estructure of a user object:
The reason for asking the initial question was because in 6.5 we have custom views that flatten out the Group and User security profiles. We can then use these to look up the BOUSER profile when the SQL is run. If the User belongs to a particular Group then the measure displays a value, otherwise it does not. This has been implemented because some users are able to see values for certain measures only for their organisations, but other measures they are able to see for all organisations, etc.
I was hoping we could access the XI Repository tables through SQL and create our custom views/tables.
Having said that, from one of the replies it seems we should still be able to do this via SDK. If anyone has had some success then please do let us know.
Any news about this tools yet? I am also highly interested to get this tool or other third party tools that can provide me the repository information such as how many groups are there, users listed under each groups, list of universe belong to each group. etc.
if you go to the Business Objects Website ->Developer Zone->Developer Library ->BusinessObjects XI R2 -> Web Services SDK you will see a ZIP file regarding the “Business Objects Platform Web Services Repository Explorer Application”
you can also build a query i nthe query builder to get users:
select * from ci_systemobjects where SI_KIND =‘User’
select * from ci_systemobjects where SI_KIND =‘Usergroup’
As I am seeing it, and exploring the XI r2, the SDK provided is good, and IMHO it is definitely better and you’ll find a lot of information what you want and more…
The Clients who directly used to query the repository using SQL in 6.5 and prior versions, Now in XI r2 they have to use .NET or Java (J2EE) to get the same information… write there own routines…and integrate them.
I been trying to follow directions but I can’t figure out how to install “Business Objects Platform Web Services Repository Explorer Application” I believe I got the SDK working. Any suggestions?
I am using XIR2. The problem I am having is that I have downloaded the zip file and extracted it. It contains a bunch of CS and RESX file and another folder “icons”. However, I don’t know where I need to place all these files within the Apache Tomcat (assuming if I even do it that way). Is there another program I am supposed to use to upload it?
found this thread while searching for something else. What we did was build a database to contain all of the stuff we wish we could see in the CMS database (folders, reports, instances, etc) and then use VB.Net and the SDK to load it. It’s big, ugly, and slow to run, but now we have a metadatabase that we can run sensible queries from, like “what groups have ‘full control’ on a folder in our system?” “Where is DB uid XYZ used with a report?” When we asked our sales rep when we were evaluating the product if we could see who had access to what, he said “yes”, meaning apparently that we could go to the CMC and click around. Now we can more universally but only after quite a bit of development…
Also, we downloaded that repository explorer and it only works with TomCat - does us no good with IIS…
I have written a utility to extract the XI application metadata, normalize, and load to RDBMS for reporting. Having this metadata available and behind a developed set of canned reports and ad-hoc universe provides very powerful reporting / system auditing capabilities.
BOBJ Metadata Manager will also provide similiar metadata analysis and lineage, so you may want to bring this product up with your BOBJ sales rep.