Can we dot walk into document_id field type and use it as interactive filter in the dashboards?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2024 03:45 AM
Hi All,
We have a scenario where the client wants some to use some dynamic filter on the report. But the filter which we want to use is of document_id field type, is there any possible way that we can dot walk and use it as filter in the report.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2024 05:32 AM
The document_id field is just a sys_id. Why do they want to filter on that (it will return only one record, so it could also be that filtering on 'number' does the same).
Can you explain your use case, because seeing all records where document_id is xxxxx (one record) sounds not really like a good filter to filter anything on.
Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-29-2024 02:12 AM
We have to apply filter condition based on the value stored in document_id field, so I was searching whether we can dot walk into the field and get the value which is required.
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2024 05:54 AM
Hi,
I think you are trying to use the referenced field in your report. document_id field will not allow dot walking, instead you can create a database view, join the current table with the target table where document id referred to. Generate report from the database view.
Thank you,
Palani
Palani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-29-2024 02:13 AM
Hi @palanikumar
Thanks for the solution,