Dynamic Filter in Scoped Application for Workspace List View (Not Working)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2026 08:04 PM
Hi everyone,
I’m working in a scoped application and I have a custom table that has a reference field to another table (Unit table).
I want to create different list views for this table, and each list view should display records based on a dynamic filter.
or example, I want the filter logic to be like this:
user_field , "IN" , user_sysid_array
Here, user_sysid_array contains multiple user sys_ids that are determined dynamically.
I tried using the Dynamic Filter Option, but it’s not working in the scoped application.
Also, I’m trying to display these filtered results in the Workspace list view, not in the classic (native) list view.
Has anyone implemented a similar dynamic filtering logic in a scoped app for Workspace list views?
Any guidance or example would be appreciated!
Thanks in advance!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2026 08:25 PM
@Tejas Adhalrao ,
You are showing this list view in workspace then you need to add condition in sys_ux_list.LIST table.
1. Navigate to sys_ux_list.LIST table.
2. Open the list record that you are using to show the list view.
3. Add condition as below example:
OR you can write a script include to return dynamic sys_ids and call this script include in your condition:
here getUserIds is script include name and getActiveUsers in function name. make sure to write this script in your scope application.
Regards,
Siddhesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2026 09:00 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2026 09:03 PM
@Tejas Adhalrao
Can you try using API name instead of SI name?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2026 09:51 PM
hi @Siddhesh Gawade ,not working
