Yokohama Catalog Builder Announcement/Pop-up
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
a week ago
After going to Yokohama Patch 7 Hotfix 2 update, the following informational announcement/pop-up has been showing when going to catalog items (also attached):
Build and modify items faster with the improved Catalog Builder.
How do we turn this announcement off, as we have citizen developers we do not want to use catalog builder?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
a week ago
There is a new out of box display Business Rule on the sc_cat_item table named 'Show catalog builder info banner' that is responsible for this. For some reason, ServiceNow has put this under it's highest security read-only protection policy, which means only someone from ServiceNow can do anything to this record, if they even can. Seems unnecessary in my opinion in this case, but luckily we can still thwart this effort. Create an onLoad Client Script similar to this:
function onLoad() {
g_form.clearMessages();
}