- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2024 05:49 AM
Hi All ,
I am trying to create an client script on incident with on change of assignment group gives currently selected assignment group.
but somehow it's giving sys id of assignment group ,
can someone correct me here
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2024 06:05 AM
Hi,
This is correct behaviour.
Assignment Group field is of type reference and for any reference field you will get the sys_id of selected record in all scripts using getValue() or dot walk.
Can you please explain why you want Group name?
Yo can try below:
var grp=g_form.getDisplayBox('assignment_group').value;
alert(grp);
You can find some solutions on below links:
Thanks
Anil Lande

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2024 06:05 AM
Hi,
This is correct behaviour.
Assignment Group field is of type reference and for any reference field you will get the sys_id of selected record in all scripts using getValue() or dot walk.
Can you please explain why you want Group name?
Yo can try below:
var grp=g_form.getDisplayBox('assignment_group').value;
alert(grp);
You can find some solutions on below links:
Thanks
Anil Lande