How to filter tickets before it gets overdue?

lorenze larot March 2, 2017

Hello,

How do we filter tickets  before it gets overdue?  is there a way to filter ticket that are 8 hours away from its due date?

 

Thanks,

2 answers

1 accepted

2 votes
Answer accepted
Thomas Schlegel
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 2, 2017

Hi Lorenze,

this JQL should do it: due >= "0" AND due <= 8h

Regards,

Thomas

lorenze larot March 2, 2017

Hi Thomas, 

 

Thanks for the prompt response,that works like a charm. laugh. Is there also way in JIRA to filer the first instance of a certain transition? (e.g StatusA --> StatusB) 

 

Thanks!

Thomas Schlegel
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 2, 2017

Yes, of course. Create a custom field of type Datetime and add it to your project.

In the transition, add a post function, which fills the custom field with the current date and time if it is not already filled.

 

lorenze larot March 2, 2017

Is there another way to filter it rather than adding additional custom field? or maybe an add-on  that would be able to track a transition and present it into a filter or dashboard?

Thomas Schlegel
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 3, 2017

Hi Lorenze,

main problem is, that you want the date, the transition was executed first. I don't think that you can get this date without a custom field.

Do you have the Script Runner Plugin? If so, here's another solution for your problem (but also with a custom field): https://answers.atlassian.com/questions/250963

Thomas

 

lorenze larot March 3, 2017

Thanks Again for the response Thomas. Appreciate it. I'll check on scriptrunner

0 votes
Tarun Sapra
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 2, 2017

Generally 8 hour is workday duration, thus I would use something like -

dueDate &gt; startOfDay() AND dueDate &lt; endOfDay()

Suggest an answer

Log in or Sign up to answer