JIRA Service Desk
is it possible generate a SLA based on customer request type?
x example the jql query for de SLA
issuetype="incident" and "Customer Request Type" ="XXXXX"
doesnt work
Hi Walter,
thanks for your response,
i will detail the case:
select top (10)
"AO_54307E_VIEWPORTFORM"."CALL_TO_ACTION",
"AO_54307E_VIEWPORTFORM"."DESCRIPTION",
"AO_54307E_VIEWPORTFORM"."FORM_ORDER",
"AO_54307E_VIEWPORTFORM"."ICON",
"AO_54307E_VIEWPORTFORM"."ICON_ID",
"AO_54307E_VIEWPORTFORM"."ID",
"AO_54307E_VIEWPORTFORM"."INTRO",
"AO_54307E_VIEWPORTFORM"."ISSUE_TYPE_ID",
"AO_54307E_VIEWPORTFORM"."KEY",
"AO_54307E_VIEWPORTFORM"."NAME",
"AO_54307E_VIEWPORTFORM"."VIEWPORT_ID"
from
"dbo"."AO_54307E_VIEWPORTFORM" "AO_54307E_VIEWPORTFORM"
inner join "dbo"."AO_54307E_VIEWPORT" "AO_54307E_VIEWPORT"
on "AO_54307E_VIEWPORTFORM"."VIEWPORT_ID" = "AO_54307E_VIEWPORT"."ID"
where
"AO_54307E_VIEWPORTFORM"."VIEWPORT_ID" = 1
and (lower("AO_54307E_VIEWPORTFORM"."NAME") like '%' --escape '\'
or (lower("AO_54307E_VIEWPORTFORM"."DESCRIPTION") like '%'))-- escape '\')
the error is in the last line; lower(......) the field DESCRIPTION is ntext type; when i comment the last line, the query works and i can see all the customer request types
im not sure what is the reason, it could be the collation of database that is Latin1_General_CI_AI i dont know....
Too bad this never got answered. I'm having a similar issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i looking for the same
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jaguilar,
Could you elaborate a bit more (if necessary) on what you mean by 'doesn't work'? I tried to figure out what you want to do by looking at the default implementation of an out of the box IT Service Desk and assume that you want to set different SLA targets for e.g. different types of Service Requests.
What you are trying to do is perfectly possible and even with your example JQL there's actually nothing wrong. If you consider that:
the scenario you described should be working perfectly.
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.
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.