Creating Rules to move help desk tickets to different queues
Is there a way I can create a rule to have tickets be moved into different queues based on which "owner" the user selects? Right now we have everything going into HelpDesk queue, but would love to be able to assign queues to users so I don't have to go in and sort them out after the fact. Any help is appreciated, thanks.
1 Comment
[ + ] Show comment
Answers (0)
Please log in to answer
Be the first to answer this question
SELECT HD_TICKET.* FROM HD_TICKET WHERE (OWNER_ID = 2608) AND (HD_QUEUE_ID != 16)
UPDATE HD_TICKET SET HD_PRIORITY_ID = HD_PRIORITY_ID, HD_STATUS_ID = HD_STATUS_ID, HD_IMPACT_ID = HD_IMPACT_ID, HD_CATEGORY_ID = HD_CATEGORY_ID, HD_QUEUE_ID = 16 WHERE (OWNER_ID = 2608) AND (HD_QUEUE_ID != 16); - mazostyle 9 years ago