How do I use the search to filter out the tickets where a field has been changed?
Suppose I want to know the tickets where "Due Date" has been changed by someone.
This app will suit you.
Install add the duedate field in the column and see the changes.
Hope it helps you!
Regards,
Anthony
Hi @Ashutosh Bhattacharya welcome to the community. JQL out of the box won't do that for you. A rest call will but then you have to parse the JSON output.
Quick question do you have any scripting tool add-ons in your jira instance allowing you to get at the changehistory for the issue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Ashutosh Bhattacharya
No. History searches do not support the 'duedate' field. The best you could do is search issues that were updated by a certain user, but that would bring back all the issues that were updated by that user.
issuekey IN updatedBy(jsmith)
issuekey IN updatedBy(jsmith, "-8d")
issuekey IN updatedBy(jsmith, "2018/06/01", "2018/08/31")
issuekey IN updatedBy(jsmith, "-1h")
Closest I can get to what you need is
duedate IS NOT EMPTY and issuekey IN updatedBy(<someusername>)
There is a CHANGED Operator that would work on some fields, but due date is not one of them.
The operator can be used only with the following fields: Assignee, Fix Version, Priority, Reporter, Resolution, and Status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Tim Perrault thanks for your response however I think this would pull in any kind of update related to any of the issue fields. I'm particularly looking for people who are updating the Due Date field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You will have to look in the marketplace to see if there is an app that can do it because you can't do history searches on the due date field.
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.