- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2022 11:27 PM
I have condition(javascript: 'u_full_name=' + curreant.variables.hostname_requested_for.name) in reference qualifier.However I want to other condition like u_chassis=x^ORu_chassis=y^u_lsa_event_duration=10 in the same reference qualifier.How to acheive this?
Thanks in advance
Solved! Go to Solution.
- Labels:
-
Cost Management (ITSM)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2022 11:34 PM
Hi,
do this
javascript: 'u_full_name=' + curreant.variables.hostname_requested_for.name + '^u_chassis=x^ORu_chassis=y^u_lsa_event_duration=10';
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2022 11:45 PM
Hi, correct current spelling in the code
'u_full_name=' + current.variables.hostname_requested_for.name + '^u_chassis=x^ORu_chassis=y^u_lsa_event_duration=10';