Hi there,
I am trying to set up a queue in JSM for the 'Service Operations' team, but I want to exclude issues where the Request Type is 'Capex Request' and the status is 'Pending'
resolution = Unresolved AND Queue in iqlFunction("Name = \"Service Operations\"") OR (("Request Type" = "CAPEX Request (ISMT)" AND status != Pending))
That is what I have so far but it isn't working and I am not sure how to show all their unresolved tickets but only strip out that particular subset?
Thanks
Just use this:
"Request type" != "CAPEX Request (ISMT)" AND status != "Pending" OR resolution = unresolved AND Queue in iqlFunction("Name = \"Service Operations\"")
This will cause any issues other than "CAPEX Request (ISMT)" in "Pending" status to appear in the queue.
Remember that if the request type "CAPEX Request (ISMT)" is in any status other than "Pending", it will now appear in your queue.
Hope this helps :)
The Pending issues still appear in the queue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
uh! my bad my bad:
Follow the query updated
"Request type" != "CAPEX Request (ISMT)" AND status != "Pending" OR resolution = unresolved AND Queue in iqlFunction("Name = \"Service Operations\"") AND Request type" != "CAPEX Request (ISMT)" AND status != "Pending"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey, sorry for the delay I have been unwell.
I am looking at this update but now the queue won't load. Not clear enough on the changes to see what is stopping it from displaying any results now.
EDIT - found it, there was a missing "
Thank you for your time, this does what it should be doing now.
Greatly appreciated and I have learnt some snazzy things about JQL also here :)
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.