Can we get the report Epic structure with its linked issues and child sub-tasks in an order and some calculated reports using the Jira Workflow Toolbox - JQL functions
Can we use these expressions/ functions when search for issues through JQL Queries?
Here I'm using functions provided by JWT for issue selection. You have more examples here: Issue Selection Examples
This is an alternative method of issue selection to JQL, but you can also combine both (JQL and JWT Parser) within JWT.
You have a full explanation of JWT Parser here: JWT Parser
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, you can write a report using post-function "Copy a parsed text to a field" to write text including information about epic, linked issues, and subtasks.
Example:
The expression used in the example is:
"Epic: " + toString(epic()) +
"\nLinked Issues: " + toString(linkedIssues()) +
"\nSubtasks: " + toString(subtasks())
This is a very simple example.
Please, tell me which issue is going to execute the post-function (epic, story, other issue linked to the epic, epic's subtask, stories subtask, etc) and which information do you want to include in the report. I can give you an approximate example you can use to begin working on.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Castro,
Thanks for your response.
I have created a Epic and its has 2 linked issues(of type Task). One of the linked issues Task is having Subtask. I want to retrieve this in order. I used the above But I am not able to find it in Description of Epic Issue type page.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use the following expression:
"Epic: " + toString(epic()) +
"\nEpic's Subtasks: " + toString(subtasks()) +
"\nLinked Issues: " + toString(linkedIssues()) +
"\nLinked Issues' Subtasks: " + toString(subtasks(linkedIssues()))
I'm assuming that the issue that it's executing the post-function is Epic issue.
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.