- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2024 02:41 AM
Hope you can help. I am building a catalog item and need 2 reference variable to link to each other.
Variable 1 Faculty which a lookup select box referenced to a custom faculty table.
Variable 2 School also needs to be a lookup select box referencing the custom school table.
The custom school table has a parent field that links to the Faculty table.
So I need the school variable to only show the records in the school table that have a parent of the option chosen in the faculty variable.
I have posted a picture of the simple form so far. How do I achieve this? many Thanks
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2024 03:03 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2024 03:40 AM - edited 02-29-2024 03:42 AM
Import: You have to the add the attribute "ref_qual_elements=faculty", so the filter is dynamically recalculated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-29-2024 03:15 AM
You can put an advanced reference qualifier on the school field as below :
javascript: 'u_parent=' + current.variables.u_faculty;
The above reference qualifier assumes your field names to be u_parent and u_faculty respectively so please change it if required.
Thanks & Regards
Amit Verma
Please mark this response as correct and helpful if it assisted you with your question.