Additional Assignee list in project task
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-11-2025 08:05 AM
Can anyone tell me the working functionality of additional assignee list for the project task:
Reference Qual | javascript:var util = new ProjectManagementUtils(); util.assignedToRefQual(current, SNC.PPMConfig.getProjectRole('user',current.getTableName()),true); |

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-11-2025 08:57 AM
If you want visibility of the created reference qualifier, you can add the following in a background script. You'll see a string of user sys_ids
var projectTaskGR = new GlideRecord('pm_project_task')
//projectTaskGR.setValue('parent' ,'4cfc754f1bc8aa10ccc8eac0604bcbcb' );
//projectTaskGR.setValue('top_task', '4cfc754f1bc8aa10ccc8eac0604bcbcb');
var util = new ProjectManagementUtils();
var refQual = util.assignedToRefQual(projectTaskGR, SNC.PPMConfig.getProjectRole('user',projectTaskGR.getTableName()),true);
gs.info(refQual)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-11-2025 11:49 PM
Hi @Kieran Anson @Ankur Bawiskar
Thank you for your suggestions. I have gone through that script include and for this condition
- If the assignment group on the project task is not empty, members of the group with the it_project_user role
in that script include where i can find the it_project_user role in that code. Please can you provide the screenshots of the code where the are calling it_project_user role.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-12-2025 11:44 AM
Hi @Kieran Anson @Ankur Bawiskar
Can anyone tell me the working functionality of additional assignee list for the project task when assignment group is empty and not empty?
In my case there is dictionary override on tsp1_project and that dictionary override will work after executing script include or not?
Reference Qual | javascript:var util = new ProjectManagementUtils(); util.assignedToRefQual(current, SNC.PPMConfig.getProjectRole('user',current.getTableName()),true); |
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-12-2025 12:50 PM
Hi @Kieran Anson ,
In my situation derived assignee list from resource plan is true by default then can anyone explain working functionality of additional assignee list in project task?.
2.Field: derived assignee list from resource plan is false then what is the working functionality of additional assignee list in project task?