Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reason Code Event Duration different from Daily Agent.Idle Duration

Status
Not open for further replies.

rodriguc

Technical User
Mar 24, 2004
1
0
0
GB
I am currently using seagate info desktop 7.5 with an aspect solution

Does any one know why the sum of Reason Code Events.Reason Code Event Duration would be different from the sum of Daily Agent.Idle Duration. ?
 
When you compute the sum of Reason Code Events.Reason Code Event Duration make shure that yout get _all_ records. If you use a dictionary or query which contains an equal-join to the Reason Code table you'll get only those records where agents entered one of the codes (1-999).
But there are often Idle-Events with code 0 (no reason) or above 1000 (errors, automatic idle after login, canceled...). I changed the link in the dictionary and added a formula in my report to print descriptions for these codes:

if {Reason Code Events.Reason Code Sub Event Type} = 0 then "NO REASON"
else
if {Reason Code Events.Reason Code Sub Event Type} = 1000 then "enter reason"
else
...
else
{Reason Code Desc.Reason Code Abbreviation}


hope that helps,
chris



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top