hi,
below is my jql filter i am using
project = ISOCQAT3 AND component = Deploy AND "End date" >= 2024-01-01 AND "End date" < 2025-01-01 ORDER BY "End date" ASC
and below is the table transformation query
select T1.'T' as 'Issue Type'
, T1.'Start date', T1.'End date' from T1
and the output is something like
Fist line is a sub task of the second line which is a story.
i should exclude stories if it has sub tasks and dont display, and display only the first line in this case.if the story does not have any sub-tasks i should display that story.
how do i do that please? can something be done for this in the selection query itself or can it be done in the table transformer code?
thanks
Nagarajan.
Hi @Nags Subramanian ,
With the help of the Table Transformer or Table Filter macro you'll be able to filter issues of a specific type. What concerns your case that looks rather complicated, we can suggest looking into this part of our documentation:
If you can create two Jira tables (one for stories and one for the linked sub-tasks), then you'll be able to join these tables and have a kind of an overview of your stories and their sub-tasks if there are any.
tricky, if i apply any sort of filter on the transformed table, my serial number added at the beginning of the table using rownum() becomes disarray since some of the rows get filtered out.
is there something i can use in the selection query itself , where in select only records which does not have sub-tasks?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What concerns the macro organization in general, you may combine your macros in different ways.
For example, you may filter your table with the help of the Table Filter macro and then put the Table Transformer macro on top of it to apply the ROWNUM() function and rename your columns. Then the ROWNUM() function will be applied to the filtered table and not to the original one.
Also, regarding your initial case: if you need to just select rows that don't have sub-tasks, then you can just apply a filter on the Sub-Tasks field.
From the screenshot from your original question I can see that you have stories and sub-tasks in one table. So, for stories the Sub-Tasks field can be empty or not empty and for tasks it is always empty.
So, you may use the Table Filter macro and filter empty cells of the Sub-Tasks field. Or your may filter with the help of the Table Transformer macro using the WHERE clause:
SELECT * FROM T1
WHERE 'Sub-Tasks' IS NULL
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks. 'Sub-tasks' is NULL check on the table transformer query worked perfectly fine.
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.