- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 04:12 AM
Hello Community,
I want to get the member of assignment group in form of alert for incident form.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 04:14 AM
Hello @AnkitT ,
You can use the below code.
Script include:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 04:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 04:14 AM
Hello @AnkitT ,
You can use the below code.
Script include:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 04:15 AM
If still you need any help, you can DM me.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 04:20 AM
Hi @AnkitT ,
I tried your problem in my PDI and it works for me please use below script
var gr = new GlideRecord('sys_user_grmember');
gr.addEncodedQuery("group.nameSTARTSWITHsoftware");
gr.query();
while(gr.next()){
gs.print("Users = " + gr.user.getDisplayValue())
}
Result
Please mark my answer correct and helpful if this works for you
Thanks and Regards
Sarthak