Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi Team,
One of the user is facing issues with start/stop sprint button. Sprint button was greyed out.
User have required role(Project Admin) in all the projects.
The filter for the Sprint Board is as below.
(project in ("Orders", "RFC Checklist", "Tracking Service") OR component in ("Team C - Legacy komponenter")) AND (component != "Team Transition" OR component is EMPTY) AND (issuetype in standardIssueTypes() AND status not in (OPEN, "Ready for Prioritization", "Awaiting Input", "Ready for estimation") OR issuetype in subTaskIssueTypes() OR issuetype = Epic) ORDER BY Rank ASC
Please if anyone can help me how to resolve this issue.
Thanks!
so for sure they have manage sprint permissions for all projects?
Hi @Jack Brickey Thanks for the replay. Yes, The user have Manage sprint permission for all projects.
Thanks !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @RichardA
Your query is written in such a way that a user must have Manage Sprints permission in every project in the Jira instance, including Service Management project if you have that as part of your instance.
Reformatting your query to make it a little easier to see this. The problem is in lines 2-4. In Line 2 you have specified a set of projects for your query, but then you OR this with a criteria based on Components in line 4. Because of Line 4, all projects in the instance will be evaluated to see if they have any issues that use that value for Components. Even if the projects don't use that Component value, the project is considered in scope for the filter and therefore anybody using this filter must have the Manage Sprint permission for all projects.
(
project in ("Orders", "RFC Checklist", "Tracking Service")
OR
component in ("Team C - Legacy komponenter")
)
AND
(
component != "Team Transition"
OR
component is EMPTY
)
AND
(
issuetype in standardIssueTypes()
AND
status not in (OPEN, "Ready for Prioritization", "Awaiting Input", "Ready for estimation")
OR
issuetype in subTaskIssueTypes()
OR
issuetype = Epic
) ORDER BY Rank ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, @RichardA !
I agree with Jack.
Also I can recommend you to create a filter with this jql-query, then create a pie-chart on dashboard with “projects”. There you can find some extra projects or it can help you to check “manage sprint” permission.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Alexander Bondarev I have verified all the projects based on the JQL query, User have Manage sprint permission for all projects. And he is the project admin as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.