/build/static/layout/Breadcrumb_cap_w.png

How to exclude category updates from the "Reopen Ticket - Modified" rule

So we have a slight issue at my workplace where some techs like to forget to set a category for their tickets. As you can imagine, this impedes our ability to run accurate reports. Is there an easy way to exclude category changes from the Reopen Ticket - Modified rule? As of now, if I go in and change a category, it reopens the ticket as I'm not an owner of the ticket. I suppose I could force everyone to change the category of their own tickets, but I have a feeling I'll be in the same boat next year. Another option is to temporarily disable the rule, but I would prefer to be able to leave it enabled so in the future we can make adjustments to tickets as admins without reopening them.


0 Comments   [ + ] Show comments

Answers (1)

Posted by: ondrar 4 years ago
Black Belt
1

I added the following to the ReopenTicket rule to allow all owners in that queue to modify tickets without them being reopened.


First, join USER_LABEL_JT to USER UPDATER, then join LABEL to USER_LABEL_JT, so you can get labels for the updater:

join USER_LABEL_JT UJT on UPDATER.ID = UJT.USER_ID
join LABEL L on UJT.LABEL_ID = L.ID


Then get a list of all labels for the updater in the SELECT statement:

GROUP_CONCAT(L.ID) AS LABELS


Finally at the end of the query, specify what label number you want to exclude with a HAVING statement:

HAVING LABELS NOT LIKE '%36%' 


This can be found by hovering over the link for the label for ticket owners in the Label Management > Labels module.


Test this out before using it to make sure it runs right for you.

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ