Hello,
Is there an easily available report that will show the number of owner changes a ticket goes through in its lifetime, or could someone please advise me how to create one? Eventually, will require to know who the owners are the ticket goes through, but the count is more important for now.
Thanks
Owner Count/ Ticket Report
Moderator: crythias
-
- Znuny guru
- Posts: 5018
- Joined: 13 Mar 2011, 09:54
- Znuny Version: 6.0.x
- Real Name: Renée Bäcker
- Company: Perl-Services.de
- Contact:
Re: Owner Count/ Ticket Report
In the SQL Box (Admin Area):
Code: Select all
SELECT COUNT(*) + 1 AS owners FROM ticket_history th INNER JOIN ticket_history_type tht ON th.history_type_id = tht.id WHERE tht.name = 'OwnerUpdate' AND th.ticket_id = ...
Perl / Znuny development: http://perl-services.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de