The CreatorCon Call for Content is officially open! Get started here.

Yokohama Catalog Builder Announcement/Pop-up

mwmartin
Tera Contributor

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?

1 REPLY 1

Brad Bowman
Kilo Patron
Kilo Patron

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:

 

BradBowman_0-1760018476651.png

function onLoad() {
	g_form.clearMessages();
}