cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
572
Views
4
Helpful
2
Replies

CUIC 9.x report definition assistance

jeroen1964
Level 1
Level 1

Hi,

Can anyone help me out with a report definition on UCCE that does not only give the different agent states and durations, but also when the state change has occurred ? something like:

Name, date, State, State starttime, state endtime, stateduration, reasoncode text

thanks in advance

Jeroen Wallenburg

2 Replies 2

Geevarghese Cheria
Cisco Employee
Cisco Employee

Hi Jeroen,

  For related information i would request you to refer Agent Real Time and Report Definitions.

Thanks and Regards,

Geevarghese

SELECT

   A.EnterpriseName,

  aed.SkillTargetID,

  A.PeripheralNumber,

  aed.LoginDateTime,

  Event = CASE Event WHEN 1 THEN 'Login (1)' WHEN 2 THEN 'Logout(2)' WHEN 3 THEN 'NotReady (3)' END ,

  EventStart = DATEADD(ss,-Duration,DateTime),

  EventEnd = DateTime,

  aed.Duration,

  Reason = rc.ReasonText + '(' + CONVERT(varchar(10),rc.ReasonCode) + ')',

  aed.ReasonCode

FROM Agent_Event_Detail aed

LEFT OUTER JOIN Reason_Code rc on aed.ReasonCode = rc.ReasonCode

JOIN Agent A on aed.SkillTargetID = A.SkillTargetID

WHERE  aed.SkillTargetID = :AgentSkillTargetID

     and aed.DateTime >= :startDate

     and aed.DateTime < :endDate

order by DateTime,Reason

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: