COGNOiSe.com - The IBM Cognos Community

IBM Cognos 8 Platform => COGNOS 8 => SDK => Topic started by: kulkarni on 17 Jun 2009 08:40:30 AM

Title: Get all the members in the role/group
Post by: kulkarni on 17 Jun 2009 08:40:30 AM
Using VB.Net, I am trying to extract all the members in a role/group and am having trouble getting the information.

The code is below -
Dim cognosRole As role = CType(cmService.query(objectPath, propertiesObj, sortOption, queryOption)(0), role)

If I try to loop through and display the members in the role, I am getting a NullException Error. In debug mode, I found out that there are no members in the role (see screenshot attached), however if I check in Cognos Connection, I do find several members for the role.

Do you know why this is happening? or if you have a better way to extract this information?

Thank you.
Title: Re: Get all the members in the role/group
Post by: lindero on 19 Jun 2009 02:37:44 AM
I'm a java programmer but nevertheless the structure should be the same.

Which properties do you list in your propertiesObj object? There must list up the property members. Then the property method getMembers isn't null but contains the members of the queried group/role.

Cheers
Title: Re: Get all the members in the role/group
Post by: kulkarni on 22 Jun 2009 08:35:51 AM
Mystery solved, I had not used propenum.members in my properties array. After adding it, I am able to see the members now.

Thank you.