/build/static/layout/Breadcrumb_cap_w.png

Ticket report - Grouped by Category and sorted by Technician and displays "work effort" logged, NOT ticket duration.

I need a report that shows the total number of days/hours/minutes that each Tech logs as WORK, for each Category type.

For example:  I have 4 Helpdesk Techs.  I need to be able to show and compare the amount of time each Tech logs as "work" when performing (X Cagegory) (or any other Category)

Ideally, the report would be grouped by Category and sorted by Technician and display "work effort", NOT ticket duration.

I have a report (below) that shows the "work hours" for a specified date range, per Tech.  However, I need to have it broken down to display d:hh:mm for each ticket Category.

 

SELECT U.FULL_NAME,
SUM(format((time_to_sec(timediff(stop, start)))/3600.0 + ADJUSTMENT_HOURS,2)) as HOURS_WORKED
from (HD_WORK W, HD_TICKET T, USER U)
where W.HD_TICKET_ID = T.ID
  and isnull(W.VOIDED_BY)
  and W.USER_ID = U.ID
  AND ((U.FULL_NAME like '%allgood%')
  OR (U.FULL_NAME like '%white%')
  OR (U.FULL_NAME like '%julian%')
  OR (U.FULL_NAME like '%perry%')
  OR (U.FULL_NAME like '%walters%')) 
  and W.STOP between date "2013-10-01" and "2013-11-01"
GROUP BY U.FULL_NAME

 


0 Comments   [ + ] Show comments

Answers (0)

Be the first to answer this question

 
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