Board filter is dynamic based on category. This prevents us from having to manually add a project each time.
The board settings doesn't show an error about projects, it in fact knows we currently have 50 projects returned.
All 50 projects use the same permission scheme.
User has the manage sprints permission in that permission scheme.
They still can't close the sprint.
No archived projects exist.
Double and Triple checked that all projects in that category have that scheme.
Hello @Celina Kincaid
You must explicitly declare the in-scope projects in the JQL filter. You can't use criteria to select the projects (i.e. using the project category.)
Otherwise Jira will assume that any and all projects may have issues that are within the scope of the board, and the users must then have Manage Sprint permissions for all projects on the Jira instance.
This has been discussed in at least a few previous community posts:
https://community.atlassian.com/t5/Jira-questions/Using-manage-sprints-permission/qaq-p/2221414
https://community.atlassian.com/t5/Jira-Service-Management/Manage-Sprint-permissions/qaq-p/2810356
Yes, I'm aware of all that. Did you see where I said EVERY project in that category shares the same permission scheme that DOES allow that access?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Celina Kincaid
Yes, I did.
Did you notice that I said that the project scope in the filter must be declared explicitly, not by criteria?
You must declare the project scope as project in (project 1, project 2, project 3). You cannot use selection criteria such as category = "Production Support"
If you do not explicitly declare the projects in scope then Jira will consider all projects to potentially contain issues that may match the filter. It doesn't matter if the actual results of the filter are issues from projects where you do have the permissions. The potential for an issue to be in any project will require that you have the appropriate permission in every project on your Jira instance.
I think if you try changing your filter from
project in ("Quavo Support Development") OR (category = "Production Support" AND "Development Team[Dropdown]" IN ("Support Development") )
//tp///
project in ("Quavo Support Development") OR (project in (<comma separated list of all projects in the Production Support project category>) AND "Development Team[Dropdown]" IN ("Support Development") )
...you will then find that your users with the Manage Sprint permission in all the explicitly specified projects will be able to close the sprints.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is it possible to share your board filter, obfuscating anything proprietary?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project in ("Quavo Support Development") OR (category = "Production Support" AND "Development Team[Dropdown]" IN ("Support Development") )
this was the first query that didn't work
so I broke it down to find the culprit and this is the problem
(category = "Production Support" AND "Development Team[Dropdown]" IN ("Support Development") )
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.