cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X

How to get assignee in Problem Report task ?

cdurmaz
4-Participant

How to get assignee in Problem Report task ?

Hello,

How can I get assignee(User 1) as an attribute from a Problem Report ? Please look at attached file.

Thanks in advance.

1 REPLY 1
jmomber
9-Granite
(To:cdurmaz)

Try this:

WTChangeActivity2 changeActivity = <get change activity object>;

Team team = (Team)changeActivity.getTeamId().getObject();

  ArrayList assignees = (ArrayList)team.getRolePrincipalMap().get(Role.toRole("ASSIGNEE"));

  for(Object u : assignees)

  {

       WTPrincipal user = (WTPrincipal)((WTPrincipalReference)u).getObject();

  }

You may need to change role names if you don't use ASSIGNEE as the role.

Top Tags