
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2019 01:57 AM
Hello Everyone,
I need your help with a specific requirement which is:
We have an UI action (New) that appears in two places for the (sc_task) table,
First from the request item related list.
Which is fine.
Second in the list view of the (sc_task)
Which not wanted to appear.
How can I hide the UI action (New) from the List view of sc_task but not from the related list of the request item form?
Thank you,
Solved! Go to Solution.
- Labels:
-
Service Catalog

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2019 03:36 AM
Navigate to sc_task.LIST
Configure List control
and Make Omit new button to TRUE
This will remove the new button from sc_task table but will keep the button in related list

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2019 02:23 AM
just add the condition in the ui action: Append this
!(RP.isRelatedList() && current.getTableName()=='ADDTHETABLEYOUNEEDTOREMOVETHISFROM')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2019 03:13 AM
Thank you Trupti,
I'm not trying to exclude the hole table out of the UI action, I'm just trying to make the UI action (New) to appear in the related list but not from the List view of the table ( sc_task)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2019 10:09 PM
Thank you very much

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2019 03:36 AM
Navigate to sc_task.LIST
Configure List control
and Make Omit new button to TRUE
This will remove the new button from sc_task table but will keep the button in related list
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2023 09:10 AM
How can we do this for a custom ui action?