Skip to Main Content

Analytics Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Fetch users from Native Group using CSS API

QAOct 3 2020

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:
image.pngThanks
A

Comments