Referenece qualifier on reference variable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2024 12:40 AM
Hello Everyone,
can any one tell me what will be the mistake in below reference qualifier -
javascript:'active=true^u_countryISEMPTY^ORu_countryLIKE'+current.variables.country+'^u_country_not_available_forNOT LIKE'+current.variables.country+'^ORu_country_not_available_forISEMPTY
note-current.variables.country is the dynamic value of of variable on record producer

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2024 02:33 AM
Hi @rmaroti i can see the ' comma is missing at the end, to correct the query need more details on what your trying to do? you dont need to look for empty values as you have a value with variable
javascript:'active=true^u_countryLIKE'+current.variables.country+'^u_country_not_available_forNOT LIKE'+current.variables.country;
Harish