05-20-2019 09:59 AM
I'm looking to implement a dB for ucce where we display the caller via the ani and company name both of which will be stored in a dB. As part of the initial scope I need to report on how many times the same ani are delivered to our call call centre. I need it have a query which shows the ani maybe per call or even better grouped together but more importantly grouped together by dialled number or by call type
An ANI, caller may dial the same call centre but to different dialled numbers/ scripts
I looked through some exampled but these were who hanged up type queries
Thanks
06-17-2019 06:39 AM
Hi,
You have not mentioned which version or system you are using, but i am assuming you are on PCCE X.X.
Try below with date and time as your requirement:
select ANI,CallTypeID from Termination_Call_Detail where DateTime between'2019-06-17 00:00:00' and '2019-06-17 07:00:00'
group by ANI,CallTypeID
Instead of CallTypeID, you can also use DigitsDialed for dialled number.
06-17-2019 11:59 AM
I'd go with a similar query but use Route_Call_Detail and not TCD since it is less rows to sort through.
06-17-2019 11:40 PM - edited 06-17-2019 11:41 PM
Both TCD and RCD gives almost similar results (tested in my environment) as the information.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide