Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2024 10:36 PM - edited 01-30-2024 10:43 PM
Can you share more insite on what your trying to attain, Are your looking just for a script if yes...
var groupMem = new GlideRecord('sys_user_grmember');
groupMem.addEncodedQuery('group='+ groupSys_id); // append group sys_id
groupMem.query();
while (groupMem.next()){
gs.print(groupMem.user.toString());
}
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....