Hi All,
I would like to have JQL filter, where I wanted to get children epic(s) and issues from children epics from the Portfolio Epic. The following pictorial representation:
Attempted JQL: issuekey in childIssuesOf("PE-1394") and type = epic AND "Scrum Team" in ('TEAM1', 'TEAM2')
This only gives EPIC1, EPIC2 and EPIC3. But, I also want issues/stories of the EPIC1, EPIC2 and EPIC3.
Any help is highly appreciated! Thanks in advance!
This gives Epics names and its children and ignoring type = epic. Following JQL worked for me. Thanks everyone for your insights and inputs
issuekey in childIssuesOf("PE-1394") AND "Scrum Team" in ('TEAM1', 'TEAM2') AND type != epic
Try this:
issuekey in portfolioChildIssuesOf("PE-1394") and type = epic AND "Scrum Team" in ('TEAM1', 'TEAM2')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to put your issue key in quotes.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same issue for the following JQLs
issuekey in portfolioChildIssuesOf('PE-1394') and type = epic
issuekey in portfolioChildIssuesOf("PE-1394") and type = epic
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sudhir ~ Are you using the Parent Link field to link your Epics to your "Portfolio Epic"?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sudhir,
An easier way might be to use the Work Breakdown Structure (WBS) Gadget offered by our Great Gadgets app.
This gadget displays the issues from a filter by their hierarchy in form of Initiatives (Portfolio Epic) > Epics > Tasks, Stories > Subtasks along with their status.
This way you can get the pictorial presentation, exactly as you want.
All you have to do is to create a Jira filter that includes all the issues to be grouped, and then to configure the gadget to use that filter.
Please note that this app offers many other gadgets that you will find useful. See the articles from our blog, to make an idea.
I hope this helps. If you need any help with the configuration, please don't hesitate to contact us at support@stonikbyte.com.
Danut.
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.