The CreatorCon Call for Content is officially open! Get started here.

How to get active user records populated in catalog item through reference qualifier

Rini1
Tera Guru

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

1 ACCEPTED SOLUTION

Yeah, brain fog - that answer is rubbish.  Use ^ not && in this case for an encoded query AND.

View solution in original post

3 REPLIES 3

Brad Bowman
Kilo Patron
Kilo Patron

Use && between the conditions for AND, so yours would be - after the javascript colon

'active=true&&company=' + current.variables.company;

Yeah, brain fog - that answer is rubbish.  Use ^ not && in this case for an encoded query AND.

Anand Kumar P
Giga Patron

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