Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi all ...
I have a custom field named "SLATime" and i write there values like -3h or -50m.
To the search question ...
Its already possible to find all issues with state open and created within the last 3 hours.
project = SD AND status = Open AND created >= -3h
I want now to search issues the same way but with the value of the SLATime field
project = SD AND status = Open AND created >= valueof("SLATime")
Is this possible ?
Thanks for any help !
claus
If you used a numeric field for SLATime, eg 180 instead of "-3h", you could use the expression function in the script runner plugin. This is much harder than you probably think, JQL wasn't really designed for this kind of sql-like concept.
The query would be something like:
issueFunction in expression(
"project = SD and status = Open"
,
"created > (SLATime * 60000) + today
)")
But, I haven't really checked that and you would need to experiment a bit, not sure about the millisecond conversion there. You might want to consider writing your own jql function, either using this plugin, or not.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register Now
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.