Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

How to remove Save button from the registration form

stene
Kilo Contributor

Hi everyone,

We have a requirement to remove Save button from the Vendor Registration form. Can anyone please help me how to achieve this.

 

Thanks in advance

1 ACCEPTED SOLUTION

To hide save button insert, add an ui action with same action name ( on table in which you want to hide) as save (for insert) , which is " sysverb_insert_and_stay"in this case and add an condition which will always fail like "current.opened_at==''. If you want to hide save for update as well, then you need an one more ui action with action name as "sysverb_update_and_stay" with same condition.

find_real_file.png

View solution in original post

9 REPLIES 9

VigneshMC
Mega Sage

You want to remove only for new record or for all records?

Thanks

stene
Kilo Contributor

Hi Vignesh,

 

Yes i have to remove/hide for only Vendor Registration form.

To hide save button insert, add an ui action with same action name ( on table in which you want to hide) as save (for insert) , which is " sysverb_insert_and_stay"in this case and add an condition which will always fail like "current.opened_at==''. If you want to hide save for update as well, then you need an one more ui action with action name as "sysverb_update_and_stay" with same condition.

find_real_file.png

stene
Kilo Contributor

Hi Vignesh,

 

I tried this , but it didnt work.

 

Can you share your ui action screenshot?

Thanks