when i am configuring columns in board setting, there are way too many unmapped statuses in the "column management". like almost 100 statuses and many of those are duplicated. For example, I have "15 unmapped statuses of "In Progress" and with "o issues" in the statuses. It does not happen in other boards under the same project.
When Jira cannot work out a simple list of status that a board might need to see in its columns, it defaults to just adding all the available ones. This can happen when you've got complex filters that select for many workflows.
This is what you are seeing - your board filter does not define a project, so Jira has no choice but to list all possible status for inclusion. Because any issue on the board could be using any of the workflows you have.
I've defined my Saved Filter using ScriptRunner and I get exactly what I want to see on the 'A-Team Board':
The problem is that I still get all the possible Status values in the Unmapped Statuses column in the Board config even though I think I've defined the project in the filter.
Here's my JQL:
project = ACME AND "Agile Team" = "A-Team" OR issueFunction in subtasksOf("project = ACME AND 'Agile Team' = 'A-Team'") OR issueFunction in epicsOf("project = ACME AND 'Agile Team' = 'A-Team'") ORDER BY Rank
What am I missing? :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your JQL could be including a huge range of issues, with lots of different workflows, so Jira is offering you everything that might get included. The last clause is probably the main one - a story in an Epic in the ACME project could be in any project you have.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Another suggestion is to temporarily change your filter to just your projects you want to include: "project in (X,Y,Z)" or "project = ACME"
This should limit your statuses in UNMAPPED to only those from the listed projects. Once you map all of them, you can change the filter back to the specific JQL and you should have all needed statuses represented.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
message shows
We can't show the projects on this board, because the board's filter doesn't specify any. Your users may have trouble managing issues and sprints on this board. Try including some projects in the filter to fix this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.