/build/static/layout/Breadcrumb_cap_w.png

How to keep a track of tickets getting moved within different Queues?

How to keep a track of tickets getting moved within different Queues?

We have multiple queues and when we move the ticket from one queue to another queue ho do we find how many tickets are moved between the queues and how moved it?


0 Comments   [ + ] Show comments

Answers (2)

Posted by: chucksteel 7 years ago
Red Belt
1
Here is a report that shows tickets transferred in the past month:
SELECT HD_TICKET.ID, HD_TICKET.TITLE, HD_TICKET.CREATED as "Created",
HD_TICKET_CHANGE.TIMESTAMP as "Transferred",
CHANGER.FULL_NAME as "Changer",
HD_STATUS.NAME as "Current Status"
FROM ORG1.HD_TICKET
JOIN HD_TICKET_CHANGE on HD_TICKET_CHANGE.HD_TICKET_ID = HD_TICKET.ID
JOIN HD_STATUS on HD_TICKET.HD_STATUS_ID = HD_STATUS.ID
JOIN USER CHANGER on CHANGER.ID = HD_TICKET_CHANGE.USER_ID
WHERE HD_TICKET_CHANGE.DESCRIPTION like "%Changed ticket Queue%"
and HD_TICKET.TIME_CLOSED > DATE_SUB(NOW(), INTERVAL 1 MONTH)


Comments:
  • Could you also advise me on how to find how many queues the ticket has moved and who moved from each queue and who is currently owning the ticket - sdeep84 7 years ago
    • This will show that information:
      SELECT HD_TICKET.ID, HD_TICKET.TITLE, HD_TICKET.CREATED as "Created",
      GROUP_CONCAT(CHANGER.USER_NAME) as "Changers",
      COUNT(CHANGER.USER_NAME) as "Changes",
      OWNER.USER_NAME as "Current Owner",
      HD_QUEUE.NAME as "Current Queue"
      FROM ORG1.HD_TICKET
      JOIN HD_TICKET_CHANGE on HD_TICKET_CHANGE.HD_TICKET_ID = HD_TICKET.ID
      JOIN HD_STATUS on HD_TICKET.HD_STATUS_ID = HD_STATUS.ID
      JOIN USER CHANGER on CHANGER.ID = HD_TICKET_CHANGE.USER_ID
      JOIN USER OWNER on OWNER.ID = HD_TICKET.OWNER_ID
      JOIN HD_QUEUE on HD_QUEUE.ID = HD_TICKET.HD_QUEUE_ID
      WHERE HD_TICKET_CHANGE.DESCRIPTION like "%Changed ticket Queue%"
      and HD_TICKET.TIME_CLOSED > DATE_SUB(NOW(), INTERVAL 1 MONTH)
      GROUP BY HD_TICKET.ID - chucksteel 7 years ago
Posted by: Hobbsy 7 years ago
Red Belt
0
You should be able to find that information in the ticket history for each ticket? If you want to report on this then you may be able to create a report that looks at the ticket change table and just extract the updates with queue change text in

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