Greetings. In one of my projects, tickets are created from a billing tool that inserts a customer's name and account number into the summary. I would like to find a way to display all the historical issues that match a portion of that summary so that I can see the past issues on a per-customer basis. Ideally, that list would live inside the issue. I don't know if there is an app that exists or a JQL query that could be created to facilitate such a request. Any insight would be very much appreciated.
You could use this JQL to search on the summary field for a specific customer:
summary ~ "customer"
That should return all issues where customer is part of the summary.
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.
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.
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.