- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2022 04:13 AM
I want to override the Reference Qualifier from a parent table, but I want to run the Reference qualifier of the child table conditionally, if the condition is false I want it to run the Reference Qualifier of the parent table.
Thanks in advance!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2022 04:23 AM
use Dictionary Override qualifier as javascript: <condition> ? <true qualifier> : <Parent qualifier>
Thanks & Regards,
Vasanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2022 04:23 AM
use Dictionary Override qualifier as javascript: <condition> ? <true qualifier> : <Parent qualifier>
Thanks & Regards,
Vasanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2022 04:25 AM
Use dictionary entry

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2022 06:32 AM
1. Call a script include through the overridden ref qual on the child, have the conditional dependency scripted in the script include or
2. Create a new field on the child with the same label (with its own ref qual); if the condition does not match, have this field shown on the form instead. Won't recommend this though, as this could have an impact on reporting etc.