Hi All,
I am new to Cognos SDK and
I am actually creating a webservice which will speak with Cognos SDK and retrieve a list of cognos reports.
I tried various things but i am not sure how to achieve this?. I used the ContentManager service and its method query to get the list.
c8CMS = new contentManagerService1();
searchPathMultipleObject spmo = new searchPathMultipleObject();
propEnum[] props = { propEnum.defaultName, propEnum.searchPath };
sort [] _sort = {new sort()};
_sort[0].order = orderEnum.ascending;
_sort[0].propName = propEnum.defaultName;
This will give me a list of all packages
_packagaepath = "/content//package/*";
spmo.Value = _packagepath;
baseClass[] bc = new baseClass();
bc = c8CMS.query(spmo, props, _sort, new queryOptions());
Thsi is what i do , but how can i find the reports which are related to a user or only he can view ?
Any suggestions?
Thanks
Swaroop
I am new to Cognos SDK and
I am actually creating a webservice which will speak with Cognos SDK and retrieve a list of cognos reports.
I tried various things but i am not sure how to achieve this?. I used the ContentManager service and its method query to get the list.
c8CMS = new contentManagerService1();
searchPathMultipleObject spmo = new searchPathMultipleObject();
propEnum[] props = { propEnum.defaultName, propEnum.searchPath };
sort [] _sort = {new sort()};
_sort[0].order = orderEnum.ascending;
_sort[0].propName = propEnum.defaultName;
This will give me a list of all packages
_packagaepath = "/content//package/*";
spmo.Value = _packagepath;
baseClass[] bc = new baseClass();
bc = c8CMS.query(spmo, props, _sort, new queryOptions());
Thsi is what i do , but how can i find the reports which are related to a user or only he can view ?
Any suggestions?
Thanks
Swaroop