Changing Approver
The help desk rule wizard has no approver available for selection. If you need to change the approver, create a help desk like what you normally would, but select Owner. After the rule is created, change T.OWNER_ID to T.APPROVER_ID.
update HD_TICKET as T, USER as T5
set T.OWNER_ID = T5.ID
where T5.USER_NAME = 'helpdesk1' and
(T.ID in (<TICKET_IDS>))
update HD_TICKET as T, USER as T5
set T.APPROVER_ID = T5.ID
where T5.USER_NAME = 'approver1' and
(T.ID in (<TICKET_IDS>))
update HD_TICKET as T, USER as T5
set T.OWNER_ID = T5.ID
where T5.USER_NAME = 'helpdesk1' and
(T.ID in (<TICKET_IDS>))
update HD_TICKET as T, USER as T5
set T.APPROVER_ID = T5.ID
where T5.USER_NAME = 'approver1' and
(T.ID in (<TICKET_IDS>))
0 Comments
[ + ] Show comments
Answers (0)
Please log in to answer
Be the first to answer this question
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.