Hi,
I have built a customer support portal and this portal I used by both internal employees and our customers to open tickets. How can I keep a track of all the tickets which customers have opened?
Say, for example, every time a ticket is created if the domain is not abc.com, I want those tickets to get an automatic tag added something like 'Customer tickets'
Option B : I want to filter tickets excluding one domain abc.com
Please help.
Hello @WasimBuden
Thank you for reaching out.
Per your description, I understand you are trying to differentiate the issues created by your internal employees that are in a single managed domain from the other customers which uses different domains. Is that correct?
Indeed, Jira Service desk Cloud application provides you with a custom field called "Domain of Reporter" which basically is automatically filled with the domain of the ticket creator.
That being said, you can use that field to properly identify the issues created by your employees and tag them as you need. These would be the steps:
"Domainofreporter" != "abc.com"
Let us know if you have any questions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @WasimBuden
have you created the custom field as I mentioned in the step-by-step provided?
The "Domainofreporter" you used in your JQL query should be the name you set for the custom field when creating it, and the explicit name "Domainofreporter" in fact does not mean anything. Better explaining:
Let's suppose you created the custom field with the name "test". This would be the JQL rule:
test != "securonix.com"
Let us know if it makes sense.
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.
Hello @WasimBuden
In advanced JQL queries, when you have separated words to define a field, you must add it between quotes. The JQL query below should work for you:
"Domain Name" != "securonix.com"
Additionally, I suggest you to take a look at the documentation below to know more about JQL syntax:
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.