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.
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.