Assignment group is not updating from flow designer.

Community Alums
Not applicable

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!

find_real_file.png

5 REPLIES 5

Official Name
Kilo Contributor

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 🙂