I need to build a filter that shows Incidents that have been completed but have not been moved to another team for action.
Example:
Ticket logged for a password reset that was completed on the call with the customer, the ticket will progress from new to in progress to complete all with the same agent in the same group.
Ive read the other suggested ways to track FCR with custom fields and so on, but the data is already in JIRA SD so there shouldn't be a need to customise the form, just filter on a set of conditions.
Thanks.
This is tricky (for me at least).
I would try something along the lines of:
status changed from "Status1" to "Status2" AND (assignee was youruser AND assignee = youruser)
Perfect!
This is the working example:
project = NAME AND issuetype = Incident AND (assignee was currentUser() AND assignee = currentUser() ) AND status in (Completed,Closed)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Next challenge is, can you filter on any ticket that has not been moved between assignee's so you can be sure this ticket was logged and closed under the same user.
The filter above works to show tickets assigned and closed under the same person, but it doesn't care if it was assigned to 20 people, just that it was closed under the same person who it was first with.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Check if this works (add it to your stuff, exchange date or use date functions):
AND NOT assignee changed before "2018-08-20"
Note: I think this might even make the first suggestion i had obsolete, but im unsure. Try running it with just this one and see if it works.
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.