In my Plan view I want to be able to see which teams are assigned to which issues and not have to do this manually.
Is there a way this field can be auto-populated based on the following:
a) When the issue is assigned to a Sprint on the board of a given team (Shared Team has been assigned a Board as their issue source)
or
b) When assigned to a team member of a given team
Is this possible or does this functionality not exist?
It's very tedious and manual to have to assign at Plan level all stories/tasks when you have several hundred in the backlog!
But in Advanced Roadmaps it has the function to Group by Teams so if I want to group by Team I need the team field populated...
I'm also looking for a way to do this. Defeats the purpose of grouping the issues by Team.
I've just started using Adv Roadmaps and I noticed this as well. I'm planning to add an automation so that on issue creation, the team field is set. You could do something similar. It would be nice if there was some other way to do this.
Yes I was looking in to this. However, my plan includes 20 project spaces so just a bit of a nightmare to create!
@Jenn Sherman did you find a way to automate this? I haven't found a way to do this yet.
I'm also looking into this. I'm unable to find the 'Team' field in the automation screen, so its not possible to trigger something to set it.
I could do a bulk update on all the issues now, but that would not solve this for future issues.
I achieved this thru JIRA automation. Since there is no Teams field available in the list, you'll need to use JSON object to specify this custom field. Here is the syntax that I am using.
{"fields": {"customfield_10700": "17"}}
where "customfield_10700" represents the Teams field in my setup. You'll need admin to find the right id and then apply it to your automation rule.
"17" represents one of the team ids that exists in my system.
Thanks Kinjal! Where do I find the team ID? Team ID is not the same as the name, correct?
Yep. There you go. Hopefully you got this all figured out and you're up and running.