COGNOiSe.com - The IBM Cognos Community

IBM Cognos 8 Platform => COGNOS 8 => SDK => Topic started by: Galaxy on 06 Oct 2011 11:05:43 PM

Title: List all the Reports Using SDK
Post by: Galaxy on 06 Oct 2011 11:05:43 PM
Hi experts,

I have a bunch of reports created using Report Studio and stored with in the default public folders. If I want to list all the reports using SDK, how to do that?
Is there any API? The basic attempt is to send these reports as an attachment to the connected people.

Any suggestions/ Please shoot it here.
Title: Re: List all the Reports Using SDK
Post by: jdzurek on 07 Oct 2011 02:36:39 PM
This will get you a list of all the reports (java):



PropEnum props[] = new PropEnum[]{PropEnum.searchPath, PropEnum.defaultName};
Sort sortOptions[] = {new Sort()};
sortOptions[0].setOrder(OrderEnum.ascending);
sortOptions[0].setPropName(PropEnum.defaultName);

if (cmService != null) {
      BaseClass[] FoundReports =
     cmService.query(new SearchPathMultipleObject(REPORTS_PATH), props, sortOptions, new QueryOptions());
}

Title: Re: List all the Reports Using SDK
Post by: Galaxy on 08 Oct 2011 03:18:16 AM
Thanks for the reply.  I did find the sample program in the SDK samples and i did customize to a bit extent to achieve my requirement. It all worked !!

thanks again !!