" /> Answered calls - Genesys CTI User Forum

Author Topic: Answered calls  (Read 1482 times)

Offline Noufal

  • Full Member
  • ***
  • Posts: 106
  • Karma: -6
Answered calls
« on: March 21, 2018, 11:30:28 AM »
Advertisement
Dears

Where i can find answered calls in Icon and GIM DB.

do you have any MS SQL query for this ?

Offline hsujdik

  • Hero Member
  • *****
  • Posts: 541
  • Karma: 30
Re: Answered calls
« Reply #1 on: March 21, 2018, 12:12:09 PM »
Which information do you need?

The most raw query on GIM DB would be something like this:

select * from interaction_resource_fact irf
inner join technical_descriptor td on td.technical_descriptor_key = irf.technical_descriptor_key
where td.technical_result_code not in ('ABANDONED','CUSTOMERABANDONED');

But for a better result you must detail a bit more what you need

Offline eduardosaito

  • Newbie
  • *
  • Posts: 41
  • Karma: 0
Re: Answered calls
« Reply #2 on: March 26, 2018, 05:44:45 AM »
IRF would be detailed calls (each line 1 interaction)

But if you only wants the numbers, there are several tables you could get it like the ag2_queue ones.

Agree with hsujdik, you have to put more details about it.