How do I make the submitter the owner of the ticket by default?
I want to make the other users able to be selected, but want to make the submitter be the default owner when the ticket is created.
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
chucksteel
5 years ago
This can be accomplished with a custom ticket rule.
SQL Select Statement:
SELECT ID
FROM HD_TICKET
WHERE HD_TICKET.OWNER_ID = 0
SQL Update Statement
UPDATE HD_TICKET
SET OWNER_ID = SUBMITTER_ID
WHERE ID in <TICKET_IDS>
Set the rule to run on ticket save. Any tickets in the queue with this rule that do not have an owner assigned will now have the owner set to the submitter the next time they are saved.