
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 09:26 AM
i have a custom application. need to remove the OOB submit button.
i have a customised ui action, now showing two submit botton.
i tried many way from forum here, i tried below,
- use same ui action name in customised ui action
- sysverb_insert
- try overrite, too many ui action named as " submit, which one i can override?
please help me, urgently to do a demo to user,
Thank you very much in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 09:48 AM
Hi @yandp
Procedure:
1. Go to the global UI Action in the sys_ui_action table.
2. Change the table from Global to the table name that you want the UI Action to be hidden.
3. In the condition field, add a script that will never be true (For example ! current.canCreate() )
4. Right-click on the header and click ‘Insert and Stay’.
This will create another UI Action with all the same properties as the global one but overrides the global UI Action and hides it as well.
Make sure, the new UI action has the exact same action name and properties as the other. (Hence I advise the ‘Insert and Stay’ so that you do not have to change anything else other than the condition and the table.
You can follow below article:
How to hide a global UI Action/ button in Scoped applications
Thanks
Rajesh Chopade
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 09:48 AM
Hi @yandp
Procedure:
1. Go to the global UI Action in the sys_ui_action table.
2. Change the table from Global to the table name that you want the UI Action to be hidden.
3. In the condition field, add a script that will never be true (For example ! current.canCreate() )
4. Right-click on the header and click ‘Insert and Stay’.
This will create another UI Action with all the same properties as the global one but overrides the global UI Action and hides it as well.
Make sure, the new UI action has the exact same action name and properties as the other. (Hence I advise the ‘Insert and Stay’ so that you do not have to change anything else other than the condition and the table.
You can follow below article:
How to hide a global UI Action/ button in Scoped applications
Thanks
Rajesh Chopade

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 10:13 AM
Hi @Rajesh Chopade1, thank you so much for the response.
i see from the sys_ui_action table, there are many "Submit" ui action, which one i should be changing?
Please advice me, thanks.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 10:22 AM
@yandp You need to deactivate the submit button which is associated with your table (part of custom application)
Hope this helps.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2024 10:26 AM
Hi Rajesh,
Thank you so much for the detail steps.
i found it, really appreciate your help .