/build/static/layout/Breadcrumb_cap_w.png

How to create a rule

All,
I am fairly new to K1000 and have never been great at scripting and was wondering if someone could help me create a rule that says if a ticket has been open for x amount of days, send an email to the owner as a reminder to update and/or close the ticket. 
Thanks!

1 Comment   [ + ] Show comment
  • You don't need a rule for that. You can use escalation and priority to set a time that says if a ticket is in a Medium priority, then ever x number of days send an email to the owner if it hasn't been updated. - nshah 8 years ago

Answers (1)

Posted by: Hobbsy 8 years ago
Red Belt
0
However if you do not want to go down the full blown SLA route, it is possible to create a rule that will email the tech when the call has been open more than x days.

First create a simple rule using the wizard in the desired queue, select the changes to say if the ticket Status is not closed and the created Date is equal to xxx (actually enter this text)

Do not add anything to update with the rule, and save it in the usual way.

Next go to reports and create a simple report, maybe select ticket ID , status and created fields, and on the filters set it to include any tickets that have been open more than X days (insert your number in instead of the X). 

Save the report then go back in and view the SQL, this will give you the correct SQL for calls open longer than X days to use in your ticket rule, so copy out the statement i.e.

 AND (((TIMESTAMP(HD_TICKET.CREATED) > NOW() OR TIMESTAMP(HD_TICKET.CREATED) <= DATE_SUB(NOW(),INTERVAL 10 DAY)))))

and insert it into your ticket rule where statement so it looks a bit like this

  where HD_PRIORITY.ID = HD_PRIORITY_ID
                        and HD_STATUS.ID = HD_STATUS_ID
                        and HD_IMPACT.ID = HD_IMPACT_ID
                        and HD_CATEGORY.ID = HD_CATEGORY_ID
                        and (((  HD_STATUS.NAME != 'Closed') AND (((TIMESTAMP(HD_TICKET.CREATED) > NOW() OR TIMESTAMP(HD_TICKET.CREATED) <= DATE_SUB(NOW(),INTERVAL 10 DAY))))) and HD_TICKET.HD_QUEUE_ID = 21 )

Now you can create the email you wish to send in the ticket rule and set the rule to run every day at a set time.

Don't be a Stranger!

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

Sign up! or login

View more:

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