Assignment group is not updating from flow designer.
Community Alums
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2020 02:08 AM
Hi,
We are using flow designers for catalog items. For catalog task, we are setting assignment group from flow designer.
In Audit history its showing group is updated but on the form of catalog item group field is blank.
There is no BR or Client script on group field.
Please suggest on this issue. Thank You!
Labels:
- Labels:
-
Script Debugger
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2021 10:26 PM
Hi Ganesh,
If you haven't already found the solution......
May be try getting the sys id and assigning it to the Assignment Group
var nameOfGroup;
nameOfGroup = ' group name'
var gr = new GlideRecord('sys_user_group');
gr.addQuery('name', nameOfGroup);
gr.query();
while(gr.next()) {
var sys_id_of_Group = gr.getValue('sys_id');
}
return sys_id_of_Group;
Hope that helps 🙂