Hello,
I would like to create a filter, that shows me all sub-task that are OPEN_PENDING where a sub-task exist where I'm (currentUser() assigned to.
e.g. task T1 - sub-task T2 (assigned to me)
sub-task T3 Status OPEN PENDING
result : T3
project = AR1 AND issuetype = Sub-task AND status = "OPEN_PENDING" AND
<other sub-task exist where (assignee in (currentUser())>
Thanks in advanced
Ylirebus
There isn't a way to accomplish this OOTB. You might consider looking at various add-ons such as scriptrunner.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks but we are not allowed to install addons ;-(.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Understand. I guess I would suggest looking at your end goal to see if there is a different approach.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
the endgoal is to quickly find all sub-tasks where I assigned to and a sub-task in the main task is OPEN_PENDING .
;-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
First babystep: show all OPEN_PENDING sub-tasks and all assigned to me sort by Main-Task. I gues this is a start. So i can see all related tasks near each other.
project = AR1 AND issuetype = Sub-task AND (assignee = currentUser() or status= "In Progress") order by parent DESC
the status is differend because its a testproject. (IN PROGRESS / OPEN_PENDING)
I look forward to find better solutions ;-)
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.