how to get the owner attributor from a user id
One answer
Hi,
can you describe your use case a little bit more clearly?
What do you want to set, where, and when?
There is some attribute customization for default values that you could use in the process configuration.
Otherwise, in an adviser here some code that might be of interest.
can you describe your use case a little bit more clearly?
What do you want to set, where, and when?
There is some attribute customization for default values that you could use in the process configuration.
Otherwise, in an adviser here some code that might be of interest.
IContributor aUser = fTeamRepository.contributorManager().fetchContributorByUserId(fContributorUserID, null);
IContributor loggedIn = fTeamRepository.loggedInContributor();
ArrayList<IContributorHandle> reviewers = new ArrayList<IContributorHandle>();
reviewers.add(loggedIn);
reviewers.add(aUser);