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 active users in advanced reference qualifier condition

Hareesha
Tera Contributor

I have one advanced reference qualifier condition for a field now i want to add active users to that existing condition. how can i add? Thanks!

existing condition : javascript:"roles="+SNC.PPMConfig.getProjectRole('manager', current.getTableName())

5 REPLIES 5

Danish Bhairag2
Tera Sage

Hi @Hareesha ,

 

This reference qualifier field is referencing to User table?

 

If yes then just add like below n try

javascript:"active=true^roles="+SNC.PPMConfig.getProjectRole('manager', current.getTableName())

 

Thanks,

Danish

Hi @Hareesha ,

 

If the response helped u plz mark it as solution accepted n close the thread so that it could benefit other users to find the right answer.

 

Thanks,

Danish

Aman Kumar S
Kilo Patron

Hi @Hareesha 

Please update as below:

javascript:"active=true^roles="+SNC.PPMConfig.getProjectRole('manager', current.getTableName())
Best Regards
Aman Kumar

Service_RNow
Mega Sage

Hi @Hareesha 

Add javascript: 'active=true'; in your code and try.

 

Please mark correct answer if it will help you.