- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 07:34 AM
i have a catalog form and when i used to the reference and reference qualifier javascript: "install_status=6^stockroom=" + current.u_stockroom; how can i change to use lookup box where it will look for instock status ?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2024 07:04 PM
Hi @chercm I found the reason why it is not working for you because for look up select box you need to ref_qual_elements=stockroom under variable attributes.
'your reference qualifier will be
javascript:'install_status=6^stockroom='+current.variables.stockroom;( stock room is the variablename of reference field)
I tested in PDI the below works fine refer below screenshots
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 02:18 PM
you should be able to change the selection from advanced to simple and use the drop down menu.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2024 04:22 PM
Hi @chercm ,
Change the reference qualifier to javascript: 'install_status=6^stockroom=' + current.stockroom;
If I could help you with your Query then, please hit the Thumb Icon and mark it as Correct !!
Thanks & Regards,
Sumanth Meda
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-13-2024 06:27 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2024 07:04 PM
Hi @chercm I found the reason why it is not working for you because for look up select box you need to ref_qual_elements=stockroom under variable attributes.
'your reference qualifier will be
javascript:'install_status=6^stockroom='+current.variables.stockroom;( stock room is the variablename of reference field)
I tested in PDI the below works fine refer below screenshots
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2024 06:27 PM
@Harish KM thanks so much , i was scratching my head so hard on this.