If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

Query for all report names

Started by kmuller, 21 Jan 2008 11:21:15 AM

Previous topic - Next topic

kmuller

Is there a way, using the SDK, to query the content store and get a list of all the report names that exist in your environment?

I have some .net experience and want to do it that way.

Thanks

Kevin

sir_jeroen

Use the searchpath:
/content//report
or
/content//*[@objectClass='report' or @objectClass='query'] <== All RS reports and QS queries

And take a look at cognos support and search for SDK

tmacfarlane

Hello, here's another spin on the same concept.  This one will search for both items.

//folder | //report Selects all folder objects and all report objects in the content store.
The vertical bar (|) specifies that the results of two search paths will be combined.

//* Selects all objects in the content store.
The asterisk (*) is a wildcard character.