We have Themes, and Linked to our Themes are Features and linked to our Features are Work Request and EPICS.
The report I need will
List all of the Features by Priority order, then Quarter drop order.
Beneath each Feature will be the Work Request, in the project whose ( Status is New, Open, In Review, In Backlog, On Hold, Blocked. by the Priority of the work request/Service Request.
I can get part way there with this. which will list the Work request which are linked to any of my Features.
issueFunction in linkedIssuesOf("Filter-which has my feature Ids" ) AND project = "ABC" AND status in (New, Open, "In Review", Blocked, Backlog, "On Hold") AND issuetype in ("Work Request") ORDER BY Priority
BUT that does not give me the double sort criteria. Only the sort at linked issues level.
I would also ideally like to show the Feature as one line with the WR's linked to it below. If I could get the sort as needed I could do with out.
and when I have a column "Parent link" it does not show the linked Feature.
I can get the EPIC Link to show a via EPIC Link. but that would mean extra epics doing what the Feature should be.