We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

Standard Change Template Proposal - Request Approval UI Action

Sam Ogden
Tera Guru

Hi All,

We are in the middle of configuring the standard change option in the platform.

Our change manager requires that all proposals have at least 1 task.  We were looking to amend the Request approval UI action to check that a change task template had been added to the proposal before requesting the approvals.  This is fine, however the 'Request Approval' button appears at the bottom of the 'Propose a new Standard Change Template' form:

 

find_real_file.png

 

We want to hide this from this part of the proposal so that users have to select the 'Save' button first and then the 'Request Approval' button only appears in the next UI:

 

find_real_file.png

 

I've seen that there is a UI action on the 'std_change_proposal' but I believe this is just the action on the second UI and not the button on the initial form before being saved.  Any help no if we can remove the button on the first form is greatly appreciated.

Thanks

Sam

1 ACCEPTED SOLUTION

I misunderstood the question. Yes the button is on catalog that you are referring. I tried to find the source of it but I am unable to find it. 

 

I am not sure of an easier way but you can add a onload catalog client script script to the catalog and hide it.

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

View solution in original post

5 REPLIES 5

Thank you, Worked for me as well!