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

JuhiV
Tera Contributor

yess, this one only.

JuhiV_0-1740724745393.png

 

Hi @JuhiV , there is a field -'Isolate Script', try to bring that field to the form and see if that field is unchecked (it might already be false). 

 

JuhiV
Tera Contributor

Hi Gopika,

 

I checked, that field is already unchecked.

JuhiV_0-1740742093835.png

 

Nilesh Pol
Tera Guru

@JuhiV  Verify, Is JQuery available or not on your instance.

you can do test by adding script like:

function onLoad() {
if (typeof jQuery !== 'undefined') {

g_form.addInfoMessage("jQuery is available!");

} else {

g_form.addInfoMessage("jQuery is NOT available!");

}
}

 

JuhiV
Tera Contributor

Hello Nilesh,

 

I tried this but couldn't find any logs in system logs.