Hi all,
Followed the foot steps of Oracle reference program to fetch users from native group, has anyone have fetched users from group? Below is snippet of my code, has anyone worked with
/* Create group with specified number of group and user members - TWEAKED this create method*/
public CSSNativeGroupIF createGroup (int numSubGroups, int numUsers) throws CSSException {
CSSNativeGroupIF parent = getGroupInstance("FDMEE_Int5");
System.out.println("get group instance done ");
addUsersToGroup(parent, numUsers);
System.out.println("Add users done ");
cssDMAPI.addNativeGroup(context, principal, parent);
return parent;
}
Error:
Main methods:
Thanks
A