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.

Reference Qualifier on Project Tasks

Jogam Anvesh
Tera Contributor

Hi community,

 

I have a use case, where need to restrict assignment group of PRJTASK, with reference qualifier. 

Need to add this Qualifier condition "^typeNOT LIKE2e763549d7111100828320300e61038d^EQ "., but when i go with dictionary override related with pm_project_task there was already OOB script include that called to the Qualifier condition(javascript:ScrumSecurityManager.getPhaseDotGroup(current, 'assignment_group').

 

How can i make changes in script include so that i can achieve this, can any help me out with this.

 

Thanks,

Anvesh.

1 ACCEPTED SOLUTION

Aman Kumar S
Kilo Patron

Hi @Jogam Anvesh ,

You can try something like:

javascript:"typeNOT LIKE2e763549d7111100828320300e61038d^"+

ScrumSecurityManager.getPhaseDotGroup(current, 'assignment_group');

 

Best Regards
Aman Kumar

View solution in original post

3 REPLIES 3

Jogam Anvesh
Tera Contributor

Reference qualifier condition on pm_project_task

 javascript:ScrumSecurityManager.getPhaseDotGroup(current, 'assignment_group')

Aman Kumar S
Kilo Patron

Hi @Jogam Anvesh ,

You can try something like:

javascript:"typeNOT LIKE2e763549d7111100828320300e61038d^"+

ScrumSecurityManager.getPhaseDotGroup(current, 'assignment_group');

 

Best Regards
Aman Kumar

Jogam Anvesh
Tera Contributor

Helped a lot , Thanks