- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2017 10:45 AM
Can anyone tell me how to hide the "Standard Changes" in the Service Portal?
These are our Standard Change templates, but we don't want people to use them in the Service Portal. We need to hide them in the Service Portal, but NOT in the ITIL View. ITIL users still need to be able to access them in the backend ITIL view.
Please mark this response as correct and/or helpful if it assisted you with your question.
Steven
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2017 11:01 AM
Create a Boolean type column (is_portal) in "sc_category" table. and make this column value true for those category which you want to display in portal.
Now update(clone) the "SC Categories" widget server script like below:
var sc = new GlideRecord('sc_category');
sc.addQuery('sys_class_name', 'sc_category');
sc.addQuery('is_portal', 'true'); // Add this condition
sc.addActiveQuery();
and map the new widget in the page, where you are displaying this widget.
Thanks,
Arindam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2019 09:52 AM
Thank you!! That is exactly what I needed!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2019 09:54 AM
Except I"m now getting error that security prevents me from writing to this field. hmm.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2019 09:59 AM
I am an admin and see no issues updating this field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2019 10:04 AM
I am an admin as well. But must not have the right role to edit that. I will ask someone that has the elevate role access and see if they can edit. Thanks again!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2019 10:46 AM
What version are you on. We are on Madrid. The night we implemented is when this got changed from true to false.