COGNOiSe.com - The IBM Cognos Community

IBM Cognos 8 Platform => COGNOS 8 => SDK => Topic started by: kmuller on 21 Jan 2008 11:21:15 AM

Title: Query for all report names
Post by: kmuller on 21 Jan 2008 11:21:15 AM
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
Title: Re: Query for all report names
Post by: sir_jeroen on 23 Jan 2008 06:23:35 AM
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
Title: Re: Query for all report names
Post by: tmacfarlane on 04 Feb 2008 03:49:03 PM
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.