- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-22-2024 10:22 AM
Hi all,
I could find many articles in the community related to reference qualifiers and I have updated ref qualifier for one of my catalog items but still system populating inactive records not sure why. Attached screenshot for reference. Any guidance would be much appreciated.
Thanks
Rini
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-22-2024 11:32 AM
Yeah, brain fog - that answer is rubbish. Use ^ not && in this case for an encoded query AND.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-22-2024 10:36 AM
Use && between the conditions for AND, so yours would be - after the javascript colon
'active=true&&company=' + current.variables.company;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-22-2024 11:32 AM
Yeah, brain fog - that answer is rubbish. Use ^ not && in this case for an encoded query AND.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-22-2024 11:12 AM
Hi @Rini1 ,
You are using incorrect syntax by placing a comma between the active and company fields.
Incorrect:
'active=true,company=' + current.variables.company;
Correct Approach:
'active=true^company=' + current.variables.company;
Mark it as helpful and solution proposed if it serves your purpose.
Thanks,
Anand