I need to display members of a particular group in a list collector(sys_user table) . I am unable to set a filter to filter users by group. Any help on this would be appreciated

Harish Goutham
Kilo Guru

This is done in a catalog and im using a list collector as a variable field.

1 ACCEPTED SOLUTION

Chris M3
Tera Guru

You will need to query the group members, and return the sys_id of all the users in the group, then filter the list collector by the sys_id's of the users.   I don't believe there is any other way.


So, the filter will look like sys_id=243bs543a121531d13215a564^ORsys_id=213ga54...



This will all be done in a client script, ,I would suggest creating an ajax call for getting a list of group members.


View solution in original post

2 REPLIES 2

Chris M3
Tera Guru

You will need to query the group members, and return the sys_id of all the users in the group, then filter the list collector by the sys_id's of the users.   I don't believe there is any other way.


So, the filter will look like sys_id=243bs543a121531d13215a564^ORsys_id=213ga54...



This will all be done in a client script, ,I would suggest creating an ajax call for getting a list of group members.


Thanks now its working