
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2023 12:27 PM
We added two custom note types / choices to Incident. This is in addition to the default Work Notes and Additional Comments. I want to disable them so they are no longer choices/visible. There have been some notes made using those custom notes, so I don't want to delete from the table.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2023 11:42 PM
Hi @David Banghart,
The solution is actually pretty simple.
Instead of deleting the custom journal fields, just deactivate them in the dictionary.
They won't be shown anymore on the form, but you could still access them if needed. No need to use UI policies or scripts for this requirement.
Help others to find a correct solution by marking the appropriate response as accepted solution and helpful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2023 03:26 AM - edited 06-17-2023 03:27 AM
Hi @David Banghart ,
Are you looking to hide few choices on those fields?
if you provide some screenshots with fields and values that will be helpful to understand requirement.
ServiceNow Community MVP 2024.
Thanks,
Pavankumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2023 06:21 AM
@Pavankumar_1 / @GodOfWar Here is the screenshot:
I would like to delete these from the table, however some of these notes had been used, so instead I need to disable their use. Make them inactive as choices on the Incident and Workspace forms, and anywhere else.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2023 07:19 AM - edited 06-21-2023 07:21 AM
Hi @David Banghart ,
If you want to hide the choices then create onload client script on incident table and use below script and replace with your field names and values.
function onLoad() {
//below choices 1 and 2 will be hidden on form
g_form.removeOption('notes', 1); //give the notes filed name and choice value
g_form.removeOption('notes', 2);
}
ServiceNow Community MVP 2024.
Thanks,
Pavankumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2023 11:42 PM
Hi @David Banghart,
The solution is actually pretty simple.
Instead of deleting the custom journal fields, just deactivate them in the dictionary.
They won't be shown anymore on the form, but you could still access them if needed. No need to use UI policies or scripts for this requirement.
Help others to find a correct solution by marking the appropriate response as accepted solution and helpful.