cancel
Showing results forĀ 
Search instead forĀ 
Did you mean:Ā 
cancel
1062
Views
0
Helpful
3
Replies

UCCX. CUIC. Operator hung up report

DOM.RF NOC
Level 1
Level 1

Colleagues, good day!

Where I could be see in the CUIC of Cisco UCCX 9.0 a report, which shows that the operator first hung up the phone without waiting for client to do so?

1 Accepted Solution

Accepted Solutions

Mark Grace
Level 1
Level 1

Unfortunately, there's no report in CCX that'll show you which side ended the call.  You'll need to look at Call Detail Records (CDRs) on CUCM.

 

https://supportforums.cisco.com/discussion/11290091/historical-reports-caller-hang-agent-hang

 

http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/trouble/8_6_1/trbl861/tbdevice.html#wp1021136

View solution in original post

3 Replies 3

Mark Grace
Level 1
Level 1

Unfortunately, there's no report in CCX that'll show you which side ended the call.  You'll need to look at Call Detail Records (CDRs) on CUCM.

 

https://supportforums.cisco.com/discussion/11290091/historical-reports-caller-hang-agent-hang

 

http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/trouble/8_6_1/trbl861/tbdevice.html#wp1021136

ahmed.zakaria
Level 1
Level 1

If you used UCCE you can do it 

ahmed.zakaria
Level 1
Level 1

SELECT
call.startdatetime,
call.ani,
call.callguid,
callevent.transferlabel,
callevent.eventtypeid,
case
when callevent.causeid = 13 then 'Agent Released'
when callevent.causeid = 1 then 'Customer Released'
else 'Other' end as CauseIdLabel,
callevent.causeid
FROM call, callevent
WHERE call.callguid=callevent.callguid
AND (callevent.eventtypeid = 6 AND callevent.causeid IN (1, 13))
AND callevent.transferlabel < 5000
SELECT
call.startdatetime,
call.ani,
call.callguid,
callevent.transferlabel,
callevent.eventtypeid,
case
when callevent.causeid = 13 then 'Agent Released'
when callevent.causeid = 1 then 'Customer Released'
else 'Other' end as CauseIdLabel,
callevent.causeid
FROM call, callevent
WHERE call.callguid=callevent.callguid
AND (callevent.eventtypeid = 6 AND callevent.causeid IN (1, 13))
AND callevent.transferlabel < 5000
and callevent.transferlabel between (3501) and (3599) <<<<   Agent extensions range 
and call.ani not like 'NA%'
and call.ani not like 'NA%'

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: