Additional Assignee list in project task

Captain Gaming
Tera Contributor

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);
8 REPLIES 8

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)

Captain Gaming
Tera Contributor

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.

Captain Gaming
Tera Contributor

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);

Captain Gaming
Tera Contributor

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?