Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

How to add one more filter in Reference qual without impacting the previous added filter

VIKAS MISHRA
Tera Contributor

There is one reference field, where i can see already some conditions/filter is added as its an advanced type reference field. 

I do not want to change any already added filter and simply wants to add my one more condition.

condition is : that this reference filed should show the records where checkbox "u_added_to_project" is true.

However when i am adding my condition at the end of the reference qual condition then its not working but when i am adding my condition in mid of the already added condition then its working, please suggest what is the difference and why its not working when i am adding my condition at the end, and how can i add my condition so that it will not impact the earlier added condition.

 

Below is the screenshot where i added the heighlighted condition at the end where its not working 

VIKASMISHRA_0-1742402234900.png

 

 

Below is the reference qual where i have added this in mid and its working.

VIKASMISHRA_1-1742402289219.png

 

1 ACCEPTED SOLUTION

SanjivMeher
Mega Patron
Mega Patron

You need to add that in quotes. System can evaluate current.top_task, but everything after that should be in quotes, since those are string and not variables.

current.top_task+"^u_added_project=true"


Please mark this response as correct or helpful if it assisted you with your question.

View solution in original post

1 REPLY 1

SanjivMeher
Mega Patron
Mega Patron

You need to add that in quotes. System can evaluate current.top_task, but everything after that should be in quotes, since those are string and not variables.

current.top_task+"^u_added_project=true"


Please mark this response as correct or helpful if it assisted you with your question.