- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-16-2019 12:27 PM
Quick question, on our assignment group reference qualifier I have the below code.
javascript: "company=" +current.company + "^active=true^typeLIKE12345^ORcompany=12345";
It's filtering everything correctly except the added OR condition of having another company hardcoded, thoughts?
Solved! Go to Solution.
- Labels:
-
Best Practices
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-08-2020 09:25 AM
This topic helped me with my problem of using OR in refQual so let me put correct answer in case anyone else is looking for similar solution:
In above exaple OR failed because it was put in wrong order. This way it should work:
javascript: "company=" +current.company + "^ORcompany=12345^active=true^typeLIKE12345";

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-16-2019 12:31 PM
Can you replace company=12345 to company="SYS_ID" ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-16-2019 12:35 PM
so "^ORcompany="+"hardcoded_syd_id" ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-16-2019 12:41 PM
Please go through below URL: Advanced Reference Qualifier

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-16-2019 12:44 PM