Hi,
I would like to have a filter showing which sub-tasks were not created 48 hours after the task (parent issue) was created.
There is a mandatory field "Number of Scrubs/ Sub-tasks" which is filled by the reporter of the main ticket (task) and also created one scripted field "Scrubs/ Sub- tasks Count" which counts the number of the subtasks.
Using below JQL, I am trying to get the list of those issues (tasks).
Project= SCRUBS AND issueFunction in hasSubtasks() AND issueFunction in expression (" ", "Number of Scrubs/ Sub-tasks > Scrubs/ Sub- tasks Count") AND createdDate >= -2d
But I get this error: expecting EOF, found 'Scrubs' @ line 1, column 11.
Can anyone help please?
Thank you,
Bahar
I was able to get a similar query working by using the customfield_##### reference instead of the custom field name.
Project= SCRUBS AND issueFunction in hasSubtasks() AND issueFunction in expression("", "customfield_10600 > customfield_10601") AND createdDate >= -2d
So what I thought was that maybe having "/" in a field might count as division and mess it up, so I edited the fields and removed the slash, and update the jql accordingly to :
Project= SCRUBS AND issueFunction in hasSubtasks() AND issueFunction in expression (" ", "Number of Scrubs > Scrubs Count") AND createdDate >= -2d
But still the exact same error! :|
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.