- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2025 11:01 AM
Hi,
I have created a reference type variable and I have this condition added in the reference qualifier - javascript:'business_organization=' + current.variables.business_org . I want to add an additional condition for this that i want to see only those values in the reference which has active = true. Is it possible to add in this reference qualifier itself. The active field is in the reference table.
Regards,
Maharshi Chatterjee
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2025 11:31 AM
You can add this to the beginning or end of your current string. The beginning is a little more straightforward:
javascript:'active=true^business_organization=' + current.variables.business_org
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2025 11:31 AM
You can add this to the beginning or end of your current string. The beginning is a little more straightforward:
javascript:'active=true^business_organization=' + current.variables.business_org
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2025 12:04 AM
@Brad Bowman Thanks very much, i created an advanced filter using your logic above. I used this to add as a reference qualifier to fetch the computer records of the user who is placing the request.