- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 03:01 AM
We have catalog Item with MRVS. I have Reference variable to application and Lookup select Box variable for modules. I need to filter values in Lookup Select Box depended on application selected in the reference variable.
I add to "Reference qual" javascript:'u_application='+current.variables.application; but nothing was showing in Lookup Select Box variable. I tried to add it to script include and log it and it seems the current.variables.application is empty.
When I change the type of module variable to reference I got value in current.variables.application(Reference Variable).
Change again to Lookup Select Box and again current.variables.application recognized as empty
Any Idea?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 03:23 AM
Hi @Tzippi Berko ,
Kindly add "ref_qual_elements = applications" attribute to the lookup select box variable.
It will fix your issue.
ref_qual_elements
A list of fields to be sent back to the server to get an updated reference.
Applicable variables: Lookup multiple choice, Lookup select box, List Collector
For more details:
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 03:22 AM - edited 11-15-2022 03:23 AM
Hi,
Have you tried using it like below:
javascript:'u_applicationIN'+current.variables.application.toString(); // use toString()
Thanks
Anil Lande

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 03:23 AM
Hi @Tzippi Berko ,
Kindly add "ref_qual_elements = applications" attribute to the lookup select box variable.
It will fix your issue.
ref_qual_elements
A list of fields to be sent back to the server to get an updated reference.
Applicable variables: Lookup multiple choice, Lookup select box, List Collector
For more details:
Aman Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 06:24 AM
Do you mean to use ref_qual_elements attribute instead of "Reference qual"? If so, I tried it and it didn't work. I not please explain me what shold I do.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 07:13 AM
Talking about this:
just add "ref_qual_elements = applications", in the variable attribute field, make sure correct name of the dependent field goes in here, in your case Application field.
Aman Kumar