Hi Team
Good day and I hope you are doing well. Tried using this JQL - "Service Desk Origin" in ("Enterprise Sales Order","Enterprise Sales Support") and status = "Open" and not status CHANGED AFTER -12h and assignee is not empty - to capture all tickets with "Open" status and no movement, updates and changes made on the ticket after 12hours.
But for some reason some of the tickets would receive a notification after 4 hours instead of 12 hrs.
Thanks!
Hi @Gucci
Did you already try executing the JQL in the advanced search? This way, you can test if the tickets which have been mistakenly matching the query are actually not included in the result.
@Gucci Based on your answer above, I think what you are actually looking for is not "status changed after -12h" but "updated < -12h". The former expression only looks at status changes (e.g. moving a ticket from "Open" to "To Do"), while the latter actually checks if anything changed in a ticket, including the assignee for example.
So, your query needs to be something like:
status = "Open" and updated < -12h and assignee is empty
This returns all open tickets which have not been modified in the last 12 hours and have no assignee.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Got it! thanks - let me try this one and will get back to you right away. Appreciate your help !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Gucci Please consider accepting the answer if it worked, maybe it is helpful for others too. Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Michel Neeser it worked!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for looking into it. I already tried testing the JQL and was able to get results, but when I checked the ticket i got this results:
Goal is to sned notification to all tickets with"Open" Status and no changes- movement - made on the ticket acter 12 hrs a notification will be sent out and ticket should be assigned.
Hope you can help me. Thansk in advance
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.