How can we remove "Request Approval" button from change template.

JuhiV
Tera Contributor

Hi Team,

 

I'm trying to remove "Request Approval" button from change template. When we open any existing template in Standard Change we get an option to modify template once we click that in bottom of the form we can see that "Request Approval" button. I checked in UI Actions table but i couldn't find it there. This button is OOB, but not able to find where it is configured.

9 REPLIES 9

Nilesh Pol
Tera Guru

Hi @JuhiV 

you can try by adding a onload catalog client script to the catalog item 'Modify a Standard Change Template' and hide it.

jQuery("#submit_button_std_chg_approval").hide();

 

Reference: https://www.servicenow.com/community/developer-forum/standard-change-template-proposal-request-appro...

 

GopikaP
Mega Sage

Hi @JuhiV , you can write a jQuery-

jQuery("#submit_button_std_chg_approval").hide();
in onLoad Client Script to hide this button in your record producer - Modify a Standard Change Template.
onLoadCl.png

 

JuhiV
Tera Contributor

Hello Gopika,

 

I tried adding that JQuery, but not working for me still. Attaching the script snap and template snap also. Kindly please help.

Hi @JuhiV , you are using the same record producer, right? -This one? SC.png