- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2022 10:59 AM
Hi!,
I have a requirement to intecept a list of records (custom table), essentially I need 2 modules: 'All records' and 'Open records'. But my records can be of different categories (almost 20) and I need to create an interceptor on these modules that will redirect to the list with the appropiate filter applied, but it's not working.
For example, let's say the table have categories A, B and C, with states Open and Closed, when I click on 'All records' an interceptor will came into play and ask what category do I want, if I select category A, then all records with category A will be displayed on the list, if I select B then only those of category B and so on.
This is my interceptor
and my answers are like this
I have created the interceptor when I need to create a new record (intercepts custom_table.do) and that one is working correctly, just this list interceptor it's not working, can you help?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2022 11:38 AM
Hi,
Create interceptor lie below:
And create module of type URL from Arguments:
Use argument by replacing sys_id of your interceptor.
/wizard_view.do?sys_target=&sysparm_stack=_list.do&sysparm_wizardAction=sysverb_new&sysparm_parent=06b57bd82f378110ae17debcf699b676
Thanks,
Anil Lande
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2022 08:41 AM
Thank you!, that solved my issue!