How to Override Global UI Action with different Condition?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-06-2018 03:53 AM
I have created a new UI action for Extended table With same name and action name and lower order.
But the condition is different for Extended one. So if the condition satisfies then Global UI action is appearing on the form.
How to resolve it?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-06-2018 04:07 AM
append the condition of Global UI action by adding below one -
current.getRecordClassName() !='table_name'

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-06-2018 04:21 AM
Create a new UI action with the same name in your extended table and it will override the global UI action
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-06-2018 05:15 AM
Hi GangaPrathap,
On Global UI action you can restrict that from running
Current.getTableName!="Your table Name",
And Create UI action Buttons with conditions
Current.getTableName=="Your table Name", && condition A
Current.getTableName=="Your table Name", && condition B
Regards,
Vandana Saluja
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-06-2018 05:24 AM
Do we have any solution without disturbing the Global one?