Hi everyone,
in jira advanced roadmaps we have "Warning center"
vd
I need a warning when a task is active (!= TODO) and is missing
- Start date
- Due date
- Estimated time
- Tracked time
is it possible to achievet it? If yes, please guide me step by step how to do it.
Hi @BenWade
Not this can't be done.
Your requirement is a filter, create this filter and set a subscription to yourself on the filter to notify you on the issues with missing information.
Roadmaps are also only a visual overlay of Jira issues, it's for planing purposes. So all the system available warnings are related to date information.
Can you provide me with JQL that shows subtasks that are active(!= TODO, done, rejected) and these fields are empty:
Start date
Due date
Original estimate
Time tracking
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Marc - Devoteam I come up with this JQL. I believe it works. Can you maybe also double check it?
issuetype = Sub-task AND status != "To Do" AND status != Done AND status != Rejected AND (duedate is EMPTY OR timeoriginalestimate is EMPTY OR timespent is EMPTY OR workratio is EMPTY OR "Start date[Date]" is EMPTY) ORDER BY priority
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @BenWade
issuetype = Sub-task AND status not in ("To Do", Done, Rejected) AND (duedate is EMPTY OR timeoriginalestimate is EMPTY OR timespent is EMPTY OR workratio is EMPTY OR "Start date[Date]" is EMPTY)
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.