- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2024 11:56 PM
Hi all,
There is way to show filters and breadcrumbs only for users with particular roles using script include or by configuring list control for a particular table. But in this way we can configure for only one table at a time. Is there a way where we can configure this globally?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 04:21 AM
Hi Tharun,
You can create a script include with name "{table_name}DisplayFilter" in you case "globalDisplayFilter" and write a function as written below.
function globalDisplayFilter() {
var answer = true;
return answer;
}
Note: The name of the function and name of the script include must be same.
Thanks,
Tharun Kumar.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2024 11:59 PM
Hi,
Can you please share the business use case for this?
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2024 12:20 AM
Hi Anil,
In our instance we have a custom role and the filter icon is visible only to the users with that custom role. Now we have to make the icon visible to all the users. To do that I need to find where this configuration is defined.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2024 12:39 AM
Hi,
Check the UI Scripts, we can use UI scripts to make changes globally. Also check if there is any business Rule created on Global table.
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2024 01:31 AM
Hi Anil,
Thanks for your reply.
I have searched in UI Scripts as well as Script includes. It was not defined there and there is no entry in global_list as well.