- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2022 06:41 AM
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.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2022 07:19 AM
Hi @Jogam Anvesh ,
You can try something like:
javascript:"typeNOT LIKE2e763549d7111100828320300e61038d^"+
ScrumSecurityManager.getPhaseDotGroup(current, 'assignment_group');
Aman Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2022 06:43 AM
Reference qualifier condition on pm_project_task
javascript:ScrumSecurityManager.getPhaseDotGroup(current, 'assignment_group')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2022 07:19 AM
Hi @Jogam Anvesh ,
You can try something like:
javascript:"typeNOT LIKE2e763549d7111100828320300e61038d^"+
ScrumSecurityManager.getPhaseDotGroup(current, 'assignment_group');
Aman Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-23-2022 01:33 AM
Helped a lot , Thanks