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.

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Unable to start or stop the sprint

RichardA March 14, 2022

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!

3 answers

1 vote
Jack Brickey
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 14, 2022

so for sure they have manage sprint permissions for all projects?

RichardA March 14, 2022

Hi @Jack Brickey  Thanks for the replay. Yes, The user have Manage sprint permission for all projects.

Thanks !

0 votes
Trudy Claspill
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 14, 2022

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
0 votes
Alexander Bondarev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 14, 2022

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.

RichardA March 14, 2022

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.

Suggest an answer

Log in or Sign up to answer