You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello!
I am using complex JQL filter to aggregate data from 2 projects and several epics.
Due to the complexity (probably) of the filter I have no permissions to manage sprints. (I have permissions on both projects)
project in (CALC, APQPS) AND "Epic Link" in (AP-796, CALC-8500, CALC-12882, CALC-12883, AP-807) OR issueFunction in subtasksOf(" 'Epic link' in (AP-796, CALC-8500, CALC-12882, CALC-12883, AP-807)") ORDER BY Rank ASC
Please help me to find a solution to manage sprints.
Hello @Aleksey V
Welcome to the community.
This is the problematic portion of your filter:
OR issueFunction in subtasksOf(" 'Epic link' in (AP-796, CALC-8500, CALC-12882, CALC-12883, AP-807)")
You are asking for subtasks of standard issues (i.e. Story, Bug, Task) that are children of specific Epics. However, Jira allows issues to be child of Epics in separate projects. Therefore, this part of your filter is has no constraint on the Projects in which those standard issues exist.
If those standard issues will only exist in the AP and APQPS projects, as noted at the front of your filter, then try either of these modifications:
project in (CALC, APQPS) AND ("Epic Link" in (AP-796, CALC-8500, CALC-12882, CALC-12883, AP-807) OR issueFunction in subtasksOf(" 'Epic link' in (AP-796, CALC-8500, CALC-12882, CALC-12883, AP-807)")) ORDER BY Rank ASC
project in (CALC, APQPS) AND "Epic Link" in (AP-796, CALC-8500, CALC-12882, CALC-12883, AP-807) OR issueFunction in subtasksOf("project in (CALC, APQPS) AND 'Epic link' in (AP-796, CALC-8500, CALC-12882, CALC-12883, AP-807)") ORDER BY Rank ASC
Hi Aleksey,
in my opinion you need to have the permission in the following projects:
can you confirm, that you have it in all of them?
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.