- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 07:11 AM
Hello,
Some users struggle with issue when they open incident form the Assignment group field is hidden. After reloading the page the field appears for a moment and disappears.
Inspect element shows style=visibility:hidden when the assignement hroup is not visible and and if value hidden is removed the Assignment group appears.
Could you please advise how we can resolve this issue? I checked business rules, UI actions, Clients scripts etc. and there are no changes recently done.
Thank you,
Martin
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 07:18 AM
It sounds like there is a client script / UI policy that is hiding this field. Have you looked to see if there is any script/policy that affects that field?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 07:23 AM - edited 12-12-2023 07:59 AM
if it appears and then hides on load, its very likely a UI Policy!
https://instance.service-now.com/now/nav/ui/classic/params/target/sys_ui_policy_list.do
^^ replace "instance" with your specific instance name.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 07:58 AM
To narrow down the records, you can filter out anything which is not of "On Load" type. For UI Policy, this would show as "On Load = true" and for Client Script, it will have a a type of "onLoad". For Client Scripts, you can add "script" to the list view and examine it (preview it) without opening each CS record...but for UI Policy, the action is detailed in the record (like a related list), so you'll need to open and examine each one. You might also want to try using Field Watcher -- Field watcher in Next Experience #servicenow #servicenowdeveloper - YouTube

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 07:18 AM
It sounds like there is a client script / UI policy that is hiding this field. Have you looked to see if there is any script/policy that affects that field?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 07:47 AM
Hi Elijah,
Thank you for your update. I went through UI policies and Client scripts and tried to narrow the records as there are plenty of them but did not find anything that would make Assignment group hidden.
BR,
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 07:58 AM
To narrow down the records, you can filter out anything which is not of "On Load" type. For UI Policy, this would show as "On Load = true" and for Client Script, it will have a a type of "onLoad". For Client Scripts, you can add "script" to the list view and examine it (preview it) without opening each CS record...but for UI Policy, the action is detailed in the record (like a related list), so you'll need to open and examine each one. You might also want to try using Field Watcher -- Field watcher in Next Experience #servicenow #servicenowdeveloper - YouTube
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2023 11:44 PM
Thank you