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.

If anyone can let me know the meaning of this Ref Qual ?

Vaishnavi35
Tera Guru

Hi,

 

Vaishnavi35_0-1723030848237.png

 

If anyone can let me know the meaning of Ref Qual in Comments field?

Condition - "Roles is itil" and "Active is true" states that in List view search Users with itil users are visible in the list. 

 

Thanks & Regards,

Vaishnavi

 

 

1 ACCEPTED SOLUTION

Satishkumar B
Giga Sage
Giga Sage

@Vaishnavi35 

The default reference qualifier filters options based on user roles. It uses JavaScript to call SNC_PPMConfig.getProjectRole('manager', current.getTableName()) to get roles for 'manager' and apply them to the reference field, ensuring users see only relevant options based on their role and context.

SNC_PPMConfig : this is your script include

getProjectRole('manager', current.getTableName()) : this method called retrieve the role associated with the type of user manager for the current Table.


Please Mark it helpful‌‌ 👍and Accept Solution‌‌!! If this helps you!!

View solution in original post

1 REPLY 1

Satishkumar B
Giga Sage
Giga Sage

@Vaishnavi35 

The default reference qualifier filters options based on user roles. It uses JavaScript to call SNC_PPMConfig.getProjectRole('manager', current.getTableName()) to get roles for 'manager' and apply them to the reference field, ensuring users see only relevant options based on their role and context.

SNC_PPMConfig : this is your script include

getProjectRole('manager', current.getTableName()) : this method called retrieve the role associated with the type of user manager for the current Table.


Please Mark it helpful‌‌ 👍and Accept Solution‌‌!! If this helps you!!