Forums

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

Reporting on Components

Elizabeth Hatfield
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
June 11, 2018

I would like to create a 2-d chart that shows the status of the tickets in the epics where the epics are labeled with the components.  The chart should show the status of the tickets for each component (not epics). However, that doesn't seem to be possible since the actual tickets in the epic aren't labeled with components.  Do I have to copy and paste all the component labels from the epic into the lower level tickets to make this work? Please help!

1 answer

0 votes
Tarun Sapra
Community Champion
June 11, 2018

Hello @Elizabeth Hatfield

If you want to categorize your tickets based on components then you would have to make sure that epic child tickets contains the components just like the parent epic. But if you just wan to fetch the tickets where parent epic contains certain components then you don't have to copy the components onto child tickets because then if you have SR plugin you can use the following JQL

https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_issuesinepics

issueFunction in issuesInEpics("project = XYZ and component=<XYZ>")

This will give you all issues in epics of project XYZ and having component value as XYZ. But again based on this query you get all issues which you want but you won't be able to categorize them based on components because they don't have the component values.

Thus, in order to have any sort of charting / reporting based on categorization of system/custom field, you need to have that field on the issues which you want to see in the reports.

Suggest an answer

Log in or Sign up to answer