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
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
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.