- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-28-2017 11:22 PM
On filter condition builder, Is there a way i can extract a list of users who belongs to a specific group?
I want to extract a list of users from user based on their group and use it in the workflow if activity. I'm doing something like this below but no luck - I'm new to scripting.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2017 01:18 AM
There is a scriptable class "GlideUserGroup" that has a method "getMembers" but you will still need a script include to get users Names rather than sys_id's. So one way or the other, still via a script include is the easiest way. Plus a script include can be used in other cases as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2017 01:18 AM
There is a scriptable class "GlideUserGroup" that has a method "getMembers" but you will still need a script include to get users Names rather than sys_id's. So one way or the other, still via a script include is the easiest way. Plus a script include can be used in other cases as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2017 01:21 AM
Got it Sergui, thanks for the info
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2017 01:22 AM
Can you mark my answer correct if it helped you solve the problem?