Welcome to Community Week 2025! Join us to learn, connect, and be recognized as we celebrate the spirit of Community and the power of AI. Get the details  

How to add multiple conditions in reference qualifier

Shahida
Kilo Contributor

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

1 ACCEPTED SOLUTION

Ankur Bawiskar
Tera Patron
Tera Patron

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

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

View solution in original post

5 REPLIES 5

Kalyani Jangam1
Mega Sage

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';