- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2018 01:07 PM
I setup some client script to auto fill in the information, when I save the incident, the following error occurs. If I click 'Save' again, it can be save normally.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2018 01:48 PM
You need to pass in sys id of group instead of name. try something like below
g_form.setValue('u_owner_group', 'xxxx sysid of group xxxxxxxxxx');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2018 01:52 PM
Thanks for your great help.
In the forum, many people said I need to use the value to the field instead of a sys_id.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2018 02:06 PM
I don't recommend using name since you might have group like Group 1 and Group 12 so setting it to Group1 will not work. sysid is always unique to each record so script knows which record to pick.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2018 09:33 PM
Thanks... ^^