Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Removed translated content for 'fr'
Sv translation
languageen

Background

CompressedA contains statistics regarding:

  • Calls to Service Numbers
  • Calls made to ACD groups
  • Calls made to agents (summary for the ACD group)
  • Outbound calls made by agents

Information such as:

  • The number of calls
    • Answered
    • Busy
    • Rejected
    • Abandoned
  • Service indicators for calls
    • Calls received in standard service times
    • Calls in service level according to 4 different criteria
  • Call transfers
    • Agent to agent
    • Agent to group
    • Agent to external destination
  • Times for calls
    • From call start to end
    • From offhook to end
    • From call start to connection to agent
    • ...

is provided.

Note: because these statistics are aggragatedaggregated, not quite as much information is available as from the call detail records. However, this aggregated data can be retained for a much longer time.

Note on blind transfers:

  • Because of the way blind group transfers work (the call is immediately transferred, no matter what the group configuration) there is no indication or possibility of seeing if the call actually reached another agent

Parameters

Data is aggregated according to the settings of the parameters:

Parameter

Default Value

Purpose

Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.SecondsToWait

7200

The minimum time after the end of a time interval before statistics are aggregated.

Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.NextTimeSlice

-

The date / time of the next time slice to be calculated. This parameter can be reset to an earlier date / time in which case the system will recalculate all intervals from the given date and time again.

Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.CustomCompress
The name of a stored procedure, in JTELStats2, which is called after the system statistics discussed below have been aggregated. This can be used to provide additional values in additional tables as required by a custom installation. NOTE: changing the CompressedA tables themselves is NOT supported.
Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.SuppressErrors0Set to 1, to suppress errors in the CustomCompress routine. If this flag is set, the system will continue with calculations for the data, even if the custom routine throws errors.
Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.EndTime02:50The end time beyond which the process will not run, and waits for the StartTime to pass before continuing. If empty, the process runs all the time.
Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.StartTime22:00The start time after which the process will start to run until the specified end time. If empty, the process runs all the time.

Query

Two tables are provided, CompressedA15 (15 minute time slices) and CompressedADay (day compression), aggregated according to the following query:

Translations Ignore


Code Block
titleCompressedA Query
SELECT      (Various Aggregations)
FROM        JTELStats.StatisticsPartA a
LEFT JOIN   JTELStats.AcdStatisticsPartB acdb
    ON      a.ID = acdb.StatisticsPartAID
LEFT JOIN   JTELStats.StatisticsPartB b
    ON      acdb.ID = b.AcdStatisticsPartBID
WHERE       ( a.ClientsID = _ClientsID )
            AND
            ( a.dtCallStart BETWEEN _Timeslice_Begin AND TIMESTAMPADD( MINUTE, 15, _Timeslice_Begin ) )
GROUP BY    a.ID;



Partitioning and Aggregations 

When the data is aggregated, it is divided into several consistent partitions, according to the following logic. The resulting aggregations then either count a call, if a condition is met, or determine the time between two timestamps.

Inbound and Outbound

bOutbound

Fields

0

Inbound

1Outbound

Inbound: ServiceNumber_* Fields

Partitions all records only using fields from StatisticsPartA.

dtCallConnect

bCallerHangup

CauseCodesID

Field

NULL

<> 0


Abandoned

NULL

0

17

Busy

NULL

0

<> 17

Reject

NOT NULL



Offhook

Inbound: ACD_* Fields

Partitions records only for which an AcdStatisticsPartB record exists, and for which it is not a group transfer or group overflow.

The condition used is:

Translations Ignore


Code Block
( AcdStatisticsPartB.ID IS NOT NULL ) AND ( AcdStatisticsPartB.AcdOriginGroupsID IS NULL )



Inbound: Queue_* Fields

Further partitions records which have entered the ACD, only calls which enter the queue.

The additional condition used is:

Translations Ignore


Code Block
( AcdStatisticsPartB.dtQueueStart IS NOT NULL )



Inbound: Queue_Serviced_* Fields

Further partition on calls which entered the queue, only calls answered by an agent are considered (calls were definitely offhook). The condition used is:

The additional condition used is:

Translations Ignore


Code Block
( StatisticsPartA.dtCallConnect IS NOT NULL ) AND ( AcdStatisticsPartB.dtAgentConnect IS NOT NULL )



Inbound: Queue_NotServiced_* Fields

Further partition on calls which entered the queue, and were offhook, only calls not answered by an agent are considered. The condition used is:

Translations Ignore


Code Block
( StatisticsPartA.dtCallConnect IS NOT NULL ) AND ( AcdStatisticsPartB.dtAgentConnect IS NULL )



These calls are further partitioned into Abandoned and Reject as follows:

Translations Ignore


Code Block
a.bCallerHangup = 0  --> System hangup (Reject)
a.bCallerHangup <> 0  --> Caller hangup (Abandoned)



Inbound: AgentCalls_*, GroupTransfer_*, AgentTransfer_*, NumberTransfer_* Fields

Only records which meet the following condition are considered:

Translations Ignore


Code Block
( StatisticsPartB.ID IS NOT NULL )




I.e. where an agent or destination call was made.

The following partitions are used:

Condition

Partition


Translations Ignore

StatisticsPartB.StatisticsPartBOrigin IS NULL


AgentCalls_


Translations Ignore
( StatisticsPartB.StatisticsPartBOrigin IS NOT NULL )
AND
( StatisticsPartB.AcdGroupsID <> AcdStatisticsPartB.AcdGroupsID )


GroupTransfer_


Translations Ignore
( StatisticsPartB.StatisticsPartBOrigin IS NOT NULL )
AND
( StatisticsPartB.AcdGroupsID = AcdStatisticsPartB.AcdGroupsID )
AND 
( StatisticsPartB.bTransferAgent <> 0 )


AgentTransfer_

Translations Ignore
( StatisticsPartB.StatisticsPartBOrigin IS NOT NULL )
AND 
( StatisticsPartB.AcdGroupsID = AcdStatisticsPartB.AcdGroupsID )
AND 
( StatisticsPartB.bTransferExternalNumber <> 0 )


NumberTransfer_

Further partitioning is according to the CONNRES field.

Outbound

Condition

Partitioning


Translations Ignore

DiallerCampaignsID IS NULL


ClickToDial_


Translations Ignore

DiallerCampaignsID IS NOT NULL


Dialler_

Inbound and Outbound: Partitioning on CONNRES


CONNRES

Result

1

OK

2

NoAnswer

3

Busy

4

CallerHangup

6

Rejected

0, 5, > 6

Failure

Tables

CompressedA15

This table contains compressed statistics for 15 minute intervals.

CompressedADay

This table contains compressed statistics for day intervals.

Fields

The field definitions are essentially the same, in both tables, only the aggregation intervals are different.

FieldTypeContents
IDINTA unique ID assigned to each record. Note, that IDs are not re-used, since if an interval is recalculated, the record is added with REPLACE, i.e. the existing record will be delteted and a new record with a new ID will be created in its place.
ClientsIDINTID of client from Clients table.
ServiceNumbersIDINTID of service number from ServiceNumbers table.
DynamicPriorityGroupsIDINTID of dynamic priority group from DynamicPriorityGroups table, or 0 if no dynamic priority group was used.
RoutingApplicationsIDINTID of the routing application from the RoutingApplications table, or 0 if none was used.
AcdGroupsIDINTID of the ACD group, from the AcdGroups table, or 0 for calls which did not enter the ACD.
DiallerCampaignsIDINTID of the dialler campaign, from the DiallerCampaigns table, or 0 for calls which did not use a dialler campaign.
dtIntervalStartDATETIMEDate and Time of the start of the interval.
ServiceNumbersRootNumberVARCHAR(32)The RootNumber field of the service number, as configured when the compressed statistics were created.
ServiceNumbersNameVARCHAR(64)The Name field of the service number, as configured when the compressed statistics were created.
ServiceNumbersName2VARCHAR(64)The Name2 field of the service number, as configured when the compressed statistics were created.
DynamicPriorityGroupsNameVARCHAR(64)The Name field from the DynamicPriorityGroups table, as configured when the compressed statistics were created.
AcdGroupsNameVARCHAR(64)The Name field from the AcdGroups table, as configured when the compressed statistics were created.
DiallerCampaignsNameVARCHAR(64)The Name field from the DiallerCampaigns table, as configured when the compressed statistics were created.
ServiceNumber_CountINTInbound calls to service number, total.
ServiceNumber_Abandoned_CountINTInbound calls to service number, abandoned (caller hangup).
ServiceNumber_Abandoned_Time_CallStart_CallEnd_Total BIGINTInbound calls to service number, abandoned (caller hangup), total seconds from dtCallStart to dtCallEnd.
ServiceNumber_Abandoned_Time_CallStart_CallEnd_MaxINTInbound calls to service number, abandoned (caller hangup), max seconds from dtCallStart to dtCallEnd.
ServiceNumber_Busy_CountINTInbound calls to service number, busy (from system).
ServiceNumber_Busy_Time_CallStart_CallEnd_TotalBIGINTInbound calls to service number, busy (from system), total seconds from dtCallStart to dtCallEnd.
ServiceNumber_Busy_Time_CallStart_CallEnd_MaxINTInbound calls to service number, busy (from system), max seconds from dtCallStart to dtCallEnd.
ServiceNumber_Reject_CountINTInbound calls to service number, rejected (by system).
ServiceNumber_Reject_Time_CallStart_CallEnd_TotalBIGINTInbound calls to service number, rejected (by system), total seconds from dtCallStart to dtCallEnd.
ServiceNumber_Reject_Time_CallStart_CallEnd_MaxINTInbound calls to service number, rejected (by system), max seconds from dtCallStart to dtCallEnd.
ServiceNumber_Offhook_CountINTInbound calls to service number, system offhook.
ServiceNumber_Offhook_Time_CallStart_CallEnd_TotalBIGINTInbound calls to service number, system offhook, total seconds from dtCallStart to dtCallEnd.
ServiceNumber_Offhook_Time_CallStart_CallEnd_MaxINTInbound calls to service number, system offhook, max seconds from dtCallStart to dtCallEnd.
ServiceNumber_Offhook_Time_CallConnect_CallEnd_TotalBIGINTInbound calls to service number, system offhook, total seconds from dtCallConnect to dtCallEnd.
ServiceNumber_Offhook_Time_CallConnect_CallEnd_MaxINTInbound calls to service number, system offhook, max seconds from dtCallConnect to dtCallEnd.
ACD_CountINTInbound calls to ACD, total.
ACD_StandardService_CountINTInbound calls to ACD in standard service times, total.
ACD_NotStandardService_CountINTInbound calls to ACD not in standard service times, total.
ACD_Abandoned_CountINTInbound calls to ACD, abandoned (caller hangup).
ACD_Abandoned_Time_CallStart_CallEnd_TotalBIGINTInbound calls to ACD, abandoned (caller hangup), total seconds from dtCallStart to dtCallEnd.
ACD_Abandoned_Time_CallStart_CallEnd_MaxINTInbound calls to ACD, abandoned (caller hangup), max seconds from dtCallStart to dtCallEnd.
ACD_Abandoned_Time_GroupStart_CallEnd_TotalBIGINTInbound calls to ACD, abandoned (caller hangup), total seconds from dtGroupStart to dtCallEnd.
ACD_Abandoned_Time_GroupStart_CallEnd_MaxINTInbound calls to ACD, abandoned (caller hangup), max seconds from dtGroupStart to dtCallEnd.
ACD_Busy_CountINTInbound calls to ACD, busy (from system).
ACD_Busy_Time_CallStart_CallEnd_TotalBIGINTInbound calls to ACD, busy (from system), total seconds from dtCallStart to dtCallEnd.
ACD_Busy_Time_CallStart_CallEnd_MaxINTInbound calls to ACD, busy (from system), max seconds from dtCallStart to dtCallEnd.
ACD_Busy_Time_GroupStart_CallEnd_TotalBIGINTInbound calls to ACD, busy (from system), total seconds from dtGroupStart to dtCallEnd.
ACD_Busy_Time_GroupStart_CallEnd_MaxINTInbound calls to ACD, busy (from system), max seconds from dtGroupStart to dtCallEnd.
ACD_Reject_CountINTInbound calls to ACD, rejected (by system).
ACD_Reject_Time_CallStart_CallEnd_TotalBIGINTInbound calls to ACD, rejected (by system), total seconds from dtCallStart to dtCallEnd.
ACD_Reject_Time_CallStart_CallEnd_MaxINTInbound calls to ACD, rejected (by system), max seconds from dtCallStart to dtCallEnd.
ACD_Reject_Time_GroupStart_CallEnd_TotalBIGINTInbound calls to ACD, rejected (by system), total seconds from dtGroupStart to dtCallEnd.
ACD_Reject_Time_GroupStart_CallEnd_MaxINTInbound calls to ACD, rejected (by system), max seconds from dtGroupStart to dtCallEnd.
ACD_Offhook_CountINTInbound calls to ACD, system offhook.
ACD_Offhook_Time_CallStart_CallEnd_TotalBIGINTInbound calls to ACD, system offhook, total seconds from dtCallStart to dtCallEnd.
ACD_Offhook_Time_CallStart_CallEnd_MaxINTInbound calls to ACD, system offhook, max seconds from dtCallStart to dtCallEnd.
ACD_Offhook_Time_CallConnect_CallEnd_TotalBIGINTInbound calls to ACD, system offhook, total seconds from dtCallConnect to dtCallEnd.
ACD_Offhook_Time_CallConnect_CallEnd_MaxINTInbound calls to ACD, system offhook, max seconds from dtCallConnect to dtCallEnd.
ACD_Offhook_Time_GroupStart_CallEnd_TotalBIGINTInbound calls to ACD, system offhook, total seconds from dtGroupStart to dtCallEnd.
ACD_Offhook_Time_GroupStart_CallEnd_MaxINTInbound calls to ACD, system offhook, max seconds from dtGroupStart to dtCallEnd.
Queue_CountINTInbound calls to ACD, entered queue, total.
Queue_StandardService_CountINTInbound calls to ACD, entered queue in standard service times, total.
Queue_NotStandardService_CountINTInbound calls to ACD, entered queue not in standard service times, total.
Queue_Abandoned_CountINTInbound calls to ACD, entered queue, abandoned (caller hangup).
Queue_Abandoned_Time_CallStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, abandoned (caller hangup), total seconds from dtCallStart to dtCallEnd.
Queue_Abandoned_Time_CallStart_CallEnd_MaxINTInbound calls to ACD, entered queue, abandoned (caller hangup), max seconds from dtCallStart to dtCallEnd.
Queue_Abandoned_Time_GroupStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, abandoned (caller hangup), total seconds from dtGroupStart to dtCallEnd.
Queue_Abandoned_Time_GroupStart_CallEnd_MaxINTInbound calls to ACD, entered queue, abandoned (caller hangup), max seconds from dtGroupStart to dtCallEnd.
Queue_Abandoned_Time_QueueStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, abandoned (caller hangup), total seconds from dtQueueStart to dtCallEnd.
Queue_Abandoned_Time_QueueStart_CallEnd_MaxINTInbound calls to ACD, entered queue, abandoned (caller hangup), max seconds from dtQueueStart to dtCallEnd.
Queue_Busy_CountINTInbound calls to ACD, entered queue, busy (from system).
Queue_Busy_Time_CallStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, busy (from system), total seconds from dtCallStart to dtCallEnd.
Queue_Busy_Time_CallStart_CallEnd_MaxINTInbound calls to ACD, entered queue, busy (from system), max seconds from dtCallStart to dtCallEnd.
Queue_Busy_Time_GroupStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, busy (from system), total seconds from dtGroupStart to dtCallEnd.
Queue_Busy_Time_GroupStart_CallEnd_MaxINTInbound calls to ACD, entered queue, busy (from system), max seconds from dtGroupStart to dtCallEnd.
Queue_Busy_Time_QueueStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, busy (from system), total seconds from dtQueueStart to dtCallEnd.
Queue_Busy_Time_QueueStart_CallEnd_MaxINTInbound calls to ACD, entered queue, busy (from system), max seconds from dtQueueStart to dtCallEnd.
Queue_Reject_CountINTInbound calls to ACD, entered queue, rejected (by system).
Queue_Reject_Time_CallStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, rejected (by system), total seconds from dtCallStart to dtCallEnd.
Queue_Reject_Time_CallStart_CallEnd_MaxINTInbound calls to ACD, entered queue, rejected (by system), max seconds from dtCallStart to dtCallEnd.
Queue_Reject_Time_GroupStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, rejected (by system), total seconds from dtGroupStart to dtCallEnd.
Queue_Reject_Time_GroupStart_CallEnd_MaxINTInbound calls to ACD, entered queue, rejected (by system), max seconds from dtGroupStart to dtCallEnd.
Queue_Reject_Time_QueueStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, rejected (by system), total seconds from dtQueueStart to dtCallEnd.
Queue_Reject_Time_QueueStart_CallEnd_MaxINTInbound calls to ACD, entered queue, rejected (by system), max seconds from dtQueueStart to dtCallEnd.
Queue_Serviced_CountINTInbound calls to ACD, entered queue, serviced by agent.
Queue_Serviced_SLA1_CountINTInbound calls to ACD, entered queue, serviced by agent, time from dtCallStart to dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_SLA2_CountINTInbound calls to ACD, entered queue, serviced by agent, time from dtCallConnect to dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_SLA3_CountINTInbound calls to ACD, entered queue, serviced by agent, time from dtGroupStart to dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_SLA4_CountINTInbound calls to ACD, entered queue, serviced by agent, time from dtQueueStart to dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_StandardService_CountINTInbound calls to ACD, entered queue, serviced by agent, in standard service times.
Queue_Serviced_StandardService_SLA1_CountINTInbound calls to ACD, entered queue, serviced by agent, in standard service times, time from dtCallStart to dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_StandardService_SLA2_CountINTInbound calls to ACD, entered queue, serviced by agent, in standard service times, time from dtCallConnect to dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_StandardService_SLA3_CountINTInbound calls to ACD, entered queue, serviced by agent, in standard service times, time from dtGroupStart to dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_StandardService_SLA4_CountINTInbound calls to ACD, entered queue, serviced by agent, in standard service times, time from dtQueueStart to dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_NotStandardService_CountINTInbound calls to ACD, entered queue, serviced by agent, not in standard service times.
Queue_Serviced_NotStandardService_SLA1_CountINTInbound calls to ACD, entered queue, serviced by agent, not in standard service times, time from dtCallStart to dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_NotStandardService_SLA2_CountINTInbound calls to ACD, entered queue, serviced by agent, not in standard service times, time from dtCallConnect to dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_NotStandardService_SLA3_CountINTInbound calls to ACD, entered queue, serviced by agent, not in standard service times, time from dtGroupStart to dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_NotStandardService_SLA4_CountINTInbound calls to ACD, entered queue, serviced by agent, not in standard service times, time from dtQueueStart to dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_Time_CallStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, serviced by agent, total seconds from dtCallStart to dtCallEnd.
Queue_Serviced_Time_CallStart_CallEnd_MaxINTInbound calls to ACD, entered queue, serviced by agent, max seconds from dtCallStart to dtCallEnd.
Queue_Serviced_Time_CallStart_AgentConnect_TotalBIGINTInbound calls to ACD, entered queue, serviced by agent, total seconds from dtCallStart to dtAgentConnect.
Queue_Serviced_Time_CallStart_AgentConnect_MaxINTInbound calls to ACD, entered queue, serviced by agent, max seconds from dtCallStart to dtAgentConnect.
Queue_Serviced_Time_CallConnect_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, serviced by agent, total seconds from dtCallConnect to dtCallEnd.
Queue_Serviced_Time_CallConnect_CallEnd_MaxINTInbound calls to ACD, entered queue, serviced by agent, max seconds from dtCallConnect to dtCallEnd.
Queue_Serviced_Time_CallConnect_AgentConnect_TotalBIGINTInbound calls to ACD, entered queue, serviced by agent, total seconds from dtCallConnect to dtAgentConnect.
Queue_Serviced_Time_CallConnect_AgentConnect_MaxINTInbound calls to ACD, entered queue, serviced by agent, max seconds from dtCallConnect to dtAgentConnect.
Queue_Serviced_Time_GroupStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, serviced by agent, total seconds from dtGroupStart to dtCallEnd.
Queue_Serviced_Time_GroupStart_CallEnd_MaxINTInbound calls to ACD, entered queue, serviced by agent, max seconds from dtGroupStart to dtCallEnd.
Queue_Serviced_Time_GroupStart_AgentConnect_TotalBIGINTInbound calls to ACD, entered queue, serviced by agent, total seconds from dtGroupStart to dtAgentConnect.
Queue_Serviced_Time_GroupStart_AgentConnect_MaxINTInbound calls to ACD, entered queue, serviced by agent, max seconds from dtGroupStart to dtAgentConnect.
Queue_Serviced_Time_QueueStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, serviced by agent, total seconds from dtQueueStart to dtCallEnd.
Queue_Serviced_Time_QueueStart_CallEnd_MaxINTInbound calls to ACD, entered queue, serviced by agent, max seconds from dtQueueStart to dtCallEnd.
Queue_Serviced_Time_QueueStart_AgentConnect_TotalBIGINTInbound calls to ACD, entered queue, serviced by agent, total seconds from dtQueueStart to dtAgentConnect.
Queue_Serviced_Time_QueueStart_AgentConnect_MaxINTInbound calls to ACD, entered queue, serviced by agent, max seconds from dtQueueStart to dtAgentConnect.
Queue_NotServiced_CountINTInbound calls to ACD, entered queue, were offhook, not serviced by agent.
Queue_NotServiced_StandardService_CountINTInbound calls to ACD, entered queue, were offhook, not serviced by agent, in standard service times.
Queue_NotServiced_NotStandardService_CountINTInbound calls to ACD, entered queue, were offhook, not serviced by agent, not in standard service times.
Queue_NotServiced_Abandoned_CountINTInbound calls to ACD, entered queue, not serviced by agent, caller hangup.
Queue_NotServiced_Abandoned_Time_CallStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, not serviced by agent, caller hangup, total seconds from dtCallStart to dtCallEnd.
Queue_NotServiced_Abandoned_Time_CallStart_CallEnd_MaxINTInbound calls to ACD, entered queue, not serviced by agent, caller hangup, max seconds from dtCallStart to dtCallEnd.
Queue_NotServiced_Abandoned_Time_CallConnect_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, not serviced by agent, caller hangup, total seconds from dtCallConnect to dtCallEnd.
Queue_NotServiced_Abandoned_Time_CallConnect_CallEnd_MaxINTInbound calls to ACD, entered queue, not serviced by agent, caller hangup, max seconds from dtCallConnect to dtCallEnd.
Queue_NotServiced_Abandoned_Time_GroupStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, not serviced by agent, caller hangup, total seconds from dtGroupStart to dtCallEnd.
Queue_NotServiced_Abandoned_Time_GroupStart_CallEnd_MaxINTInbound calls to ACD, entered queue, not serviced by agent, caller hangup, max seconds from dtGroupStart to dtCallEnd.
Queue_NotServiced_Abandoned_Time_QueueStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, not serviced by agent, caller hangup, total seconds from dtQueueStart to dtCallEnd.
Queue_NotServiced_Abandoned_Time_QueueStart_CallEnd_MaxINTInbound calls to ACD, entered queue, not serviced by agent, caller hangup, max seconds from dtQueueStart to dtCallEnd.
Queue_NotServiced_Reject_CountINTInbound calls to ACD, entered queue, not serviced by agent, system hangup.
Queue_NotServiced_Reject_Time_CallStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, not serviced by agent, system hangup, total seconds from dtCallStart to dtCallEnd.
Queue_NotServiced_Reject_Time_CallStart_CallEnd_MaxINTInbound calls to ACD, entered queue, not serviced by agent, system hangup, max seconds from dtCallStart to dtCallEnd.
Queue_NotServiced_Reject_Time_CallConnect_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, not serviced by agent, system hangup, total seconds from dtCallConnect to dtCallEnd.
Queue_NotServiced_Reject_Time_CallConnect_CallEnd_MaxINTInbound calls to ACD, entered queue, not serviced by agent, system hangup, max seconds from dtCallConnect to dtCallEnd.
Queue_NotServiced_Reject_Time_GroupStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, not serviced by agent, system hangup, total seconds from dtGroupStart to dtCallEnd.
Queue_NotServiced_Reject_Time_GroupStart_CallEnd_MaxINTInbound calls to ACD, entered queue, not serviced by agent, system hangup, max seconds from dtGroupStart to dtCallEnd.
Queue_NotServiced_Reject_Time_QueueStart_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, not serviced by agent, system hangup, total seconds from dtQueueStart to dtCallEnd.
Queue_NotServiced_Reject_Time_QueueStart_CallEnd_MaxINTInbound calls to ACD, entered queue, not serviced by agent, system hangup, max seconds from dtQueueStart to dtCallEnd.
AgentCalls_CountINTInbound calls to agents, total.
AgentCalls_OK_CountINTInbound calls to agents, agent answered.
AgentCalls_OK_Time_CallStart_CallConnect_TotalBIGINTInbound calls to agents, agent answered, total seconds from dtCallStart to dtCallConnect (agent leg).
AgentCalls_OK_Time_CallStart_CallConnect_MaxINTInbound calls to agents, agent answered, max seconds from dtCallStart to dtCallConnect (agent leg).
AgentCalls_OK_Time_CallConnect_CallEnd_TotalBIGINTInbound calls to agents, agent answered, total seconds from dtCallConnect to dtCallEnd (agent leg).
AgentCalls_OK_Time_CallConnect_CallEnd_MaxINTInbound calls to agents, agent answered, max seconds from dtCallConnect to dtCallEnd (agent leg).
AgentCalls_OK_PostCall_CountINTInbound calls to agents, agent answered, post call work required.
AgentCalls_OK_PostCall_Time_TotalBIGINTInbound calls to agents, agent answered, post call work required, total seconds.
AgentCalls_OK_PostCall_Time_MaxINTInbound calls to agents, agent answered, post call work required, max seconds.
AgentCalls_NoAnswer_CountINTInbound calls to agents, no answer.
AgentCalls_Busy_CountINTInbound calls to agents, busy.
AgentCalls_CallerHangup_CountINTInbound calls to agents, caller hangup during transfer.
AgentCalls_Reject_CountINTInbound calls to agents, rejected.
AgentCalls_Failure_CountINTInbound calls to agents, failed.
GroupTransfer_CountINTInbound, transfer to group, total.
GroupTransfer_OK_CountINTInbound, transfer to group, OK. 
GroupTransfer_OK_Time_CallStart_CallConnect_TotalBIGINT

Status
colourRed
titleRemoved from Release 3.33 upwards

Inbound, transfer to group, OK, total seconds from dtCallStart to dtCallConnect (to group leg).

GroupTransfer_OK_Time_CallStart_CallConnect_MaxINT

Status
colourRed
titleRemoved from Release 3.33 upwards

Inbound, transfer to group, OK, max seconds from dtCallStart to dtCallConnect (to group leg).

GroupTransfer_OK_Time_CallConnect_CallEnd_TotalBIGINT

Status
colourRed
titleRemoved from Release 3.33 upwards

Inbound, transfer to group, OK, total seconds from dtCallConnect to dtCallEnd (to group leg).

GroupTransfer_OK_Time_CallConnect_CallEnd_MaxINT

Status
colourRed
titleRemoved from Release 3.33 upwards

Inbound, transfer to group, OK, max seconds from dtCallConnect to dtCallEnd (to group leg).

GroupTransfer_NoAnswer_CountINTInbound, transfer to group (assisted), no answer.
GroupTransfer_Busy_CountINTInbound, transfer to group (assisted), busy.
GroupTransfer_CallerHangup_CountINTInbound, transfer to group (assisted), caller hangup during transfer.
GroupTransfer_Reject_CountINTInbound, transfer to group (assisted), rejected.
GroupTransfer_Failure_CountINTInbound, transfer to group (assisted), failed.
AgentTransfer_CountINTInbound, transfer to agent, total.
AgentTransfer_OK_CountINTInbound, transfer to agent, OK. 
AgentTransfer_OK_Time_CallStart_CallConnect_TotalBIGINTInbound, transfer to agent, OK, total seconds from dtCallStart to dtCallConnect (to group leg).
AgentTransfer_OK_Time_CallStart_CallConnect_MaxINTInbound, transfer to agent, OK, max seconds from dtCallStart to dtCallConnect (to group leg).
AgentTransfer_OK_Time_CallConnect_CallEnd_TotalBIGINTInbound, transfer to agent, OK, total seconds from dtCallConnect to dtCallEnd (to group leg).
AgentTransfer_OK_Time_CallConnect_CallEnd_MaxINTInbound, transfer to agent, OK, max seconds from dtCallConnect to dtCallEnd (to group leg).
AgentTransfer_NoAnswer_CountINTInbound, transfer to agent, no answer.
AgentTransfer_Busy_CountINTInbound, transfer to agent, busy.
AgentTransfer_CallerHangup_CountINTInbound, transfer to agent, caller hangup during transfer.
AgentTransfer_Reject_CountINTInbound, transfer to agent, rejected.
AgentTransfer_Failure_CountINTInbound, transfer to agent, failed.
NumberTransfer_CountINTInbound, transfer to number, total.
NumberTransfer_OK_CountINTInbound, transfer to number, OK. 
NumberTransfer_OK_Time_CallStart_CallConnect_TotalBIGINTInbound, transfer to number, OK, total seconds from dtCallStart to dtCallConnect (to group leg).
NumberTransfer_OK_Time_CallStart_CallConnect_MaxINTInbound, transfer to number, OK, max seconds from dtCallStart to dtCallConnect (to group leg).
NumberTransfer_OK_Time_CallConnect_CallEnd_TotalBIGINTInbound, transfer to number, OK, total seconds from dtCallConnect to dtCallEnd (to group leg).
NumberTransfer_OK_Time_CallConnect_CallEnd_MaxINTInbound, transfer to number, OK, max seconds from dtCallConnect to dtCallEnd (to group leg).
NumberTransfer_NoAnswer_CountINTInbound, transfer to number, no answer.
NumberTransfer_Busy_CountINTInbound, transfer to number, busy.
NumberTransfer_CallerHangup_CountINTInbound, transfer to number, caller hangup during transfer.
NumberTransfer_Reject_CountINTInbound, transfer to number, rejected.
NumberTransfer_Failure_CountINTInbound, transfer to number, failed.
ClickToDial_CountINTOutbound, click to dial, total.
ClickToDial_OK_CountINTOutbound, click to dial, OK.
ClickToDial_OK_Time_CallStart_CallConnect_TotalINTOutbound, click to dial, OK, total seconds from dtCallStart to dtCallConnect (to destination leg).
ClickToDial_OK_Time_CallStart_CallConnect_MaxINTOutbound, click to dial, OK, max seconds from dtCallStart to dtCallConnect (to destination leg).
ClickToDial_OK_Time_CallConnect_CallEnd_TotalINTOutbound, click to dial, OK, total seconds from dtCallConnect to dtCallEnd (to destination leg).
ClickToDial_OK_Time_CallConnect_CallEnd_MaxINTOutbound, click to dial, OK, max seconds from dtCallConnect to dtCallEnd (to destination leg).
ClickToDial_NoAnswer_CountINTOutbound, click to dial, no answer.
ClickToDial_NoAnswer_Time_CallStart_CallEnd_TotalINTOutbound, click to dial, OK, total seconds from dtCallStart to dtCallEnd (to destination leg).
ClickToDial_NoAnswer_Time_CallStart_CallEnd_MaxINTOutbound, click to dial, OK, max seconds from dtCallStart to dtCallEnd (to destination leg).
ClickToDial_Busy_CountINTOutbound, click to dial, busy.
ClickToDial_AgentHangup_CountINTOutbound, click to dial, agent hangup before call connected.
ClickToDial_Reject_CountINTOutbound, click to dial, rejected.
ClickToDial_Failure_CountINTOutbound, click to dial, failed.
Dialler_CountINTOutbound, from dialler campaign, total.
Dialler_OK_CountINTOutbound, from dialler campaign, OK.
Dialler_OK_Time_CallStart_CallConnect_TotalINTOutbound, from dialler campaign, OK, total seconds from dtCallStart to dtCallConnect (to destination leg).
Dialler_OK_Time_CallStart_CallConnect_MaxINTOutbound, from dialler campaign, OK, max seconds from dtCallStart to dtCallConnect (to destination leg).
Dialler_OK_Time_CallConnect_CallEnd_TotalINTOutbound, from dialler campaign, OK, total seconds from dtCallConnect to dtCallEnd (to destination leg).
Dialler_OK_Time_CallConnect_CallEnd_MaxINTOutbound, from dialler campaign, OK, max seconds from dtCallConnect to dtCallEnd (to destination leg).
Dialler_NoAnswer_CountINTOutbound, from dialler campaign, no answer.
Dialler_NoAnswer_Time_CallStart_CallEnd_TotalINTOutbound, from dialler campaign, OK, total seconds from dtCallStart to dtCallEnd (to destination leg).
Dialler_NoAnswer_Time_CallStart_CallEnd_MaxINTOutbound, from dialler campaign, OK, max seconds from dtCallStart to dtCallEnd (to destination leg).
Dialler_Busy_CountINTOutbound, from dialler campaign, busy.
Dialler_AgentHangup_CountINTOutbound, from dialler campaign, agent hangup before call connected.
Dialler_Reject_CountINTOutbound, from dialler campaign, rejected.
Dialler_Failure_CountINTOutbound, from dialler campaign, failed.




Purpose
Sv translation
languagede

Hintergrund

CompressedA

contains statistics regarding

enthält Statistiken bezüglich:

Calls to
  • Anrufe an Service
Numbers
  • Calls made to ACD groups
  • Calls made to agents (summary for the ACD group)
  • Outbound calls made by agents
    • Nummern
    • Anrufe, getätigt an ACD Gruppen
    • Anrufe, getätigt an Agenten (Zusammenfassung für die ACD Gruppe)
    • Ausgehende Anrufe getätigt von Agenten.

    Informationen wie z.B.:

    • Anzahl an Anrufen 
      • Beantwortet
      • Besetzt
      • Abgelehnt
      • Verlassen
    • Service Indikatoren für Anrufe
      • Eingehende Anrufe in Standard Betriebszeiten
      • Anrufe im Service Level nach 4 verschiedenen Kriterien
    • Anrufweiterleitung
      • Agent zu agent
      • Agent zu Gruppe
      • Agent zu Externes Ziel
    • Zeiten von Anrufen
      • Ab Anrufsbegin bis Ende
      • Ab ofhook bis Ende
      • Ab Anrufsbegin bis verbindung mit Agenten
      • ...

    sind zu Verfügung gestellt.

    Beachten Sie: Da diese Statistiken aggregiert sind, sind weniger Informationen verfügbar als in den Einzelverbindungsnachweisen. Jedoch können diese aggregierten Daten sehr viel länger aufbewahrt werden.

    Parameter

    Die Daten werden entsprechend den Einstellungen der Parameter aggregiert:

    Parameter

    Standard-
    wert

    Zweck

    Information such as:

    • The number of calls
      • Answered
      • Busy
      • Rejected
      • Abandoned
    • Service indicators for calls
      • Calls received in standard service times
      • Calls in service level according to 4 different criteria
    • Call transfers
      • Agent to agent
      • Agent to group
      • Agent to external destination
    • Times for calls
      • From call start to end
      • From offhook to end
      • From call start to connection to agent
      • ...

    is provided.

    Note: because these statistics are aggragated, not quite as much information is available as from the call detail records. However, this aggregated data can be retained for a much longer time.

    Parameters

    Data is aggregated according to the settings of the parameters:

    Parameter

    Default Value

    Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.SecondsToWait

    7200

    The minimum time after the end of a time interval before statistics are aggregated

    Die Mindestzeit nach dem Ende eines Zeitintervalls, bevor die Statistiken aggregiert werden.

    Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.NextTimeSlice

    -

    The date / time of the next time slice to be calculated. This parameter can be reset to an earlier date / time in which case the system will recalculate all intervals from the given date and time again

    Datum und Uhrzeit des nächsten zu berechnenden Zeitintervalls. Dieser Parameter kann auf ein früheres Datum / eine frühere Uhrzeit zurückgesetzt werden. In diesem Fall berechnet das System alle Intervalle ab dem angegebenen Datum und der angegebenen Uhrzeit neu.

    Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.CustomCompress
    The name of a stored procedure, in JTELStats2, which is called after the system statistics discussed below have been aggregated. This can be used to provide additional values in additional tables as required by a custom installation. NOTE: changing the CompressedA tables themselves is NOT supported

    Der Name einer gespeicherten Prozedur in JTELStats2, die aufgerufen wird, nachdem die unten beschriebenen Systemstatistiken aggregiert wurden. Dies kann verwendet werden, um zusätzliche Werte in zusätzlichen Tabellen bereitzustellen, wie es für eine benutzerdefinierte Installation festgelegt wurde. HINWEIS: Die Änderung der CompressedA-Tabellen selbst wird NICHT unterstützt.
    Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.SuppressErrors0
    Set to
    Auf 1 gesetzt,
    to suppress errors in the CustomCompress routine. If this flag is set, the system will continue with calculations for the data, even if the custom routine throws errors
    um Fehler in der CustomCompress-Routine zu unterdrücken. Wenn dieses Flag gesetzt ist, fährt das System mit den Berechnungen für die Daten fort, auch wenn die benutzerdefinierte Routine Fehler auslöst.
    Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.EndTime02:50
    The end time beyond which the process will not run, and waits for the StartTime to pass before continuing. If empty, the process runs all the time
    Die EndTime, nach der der Prozess nicht mehr weiterläuft und wartet, bis die StartTime verstrichen ist, bevor er fortgesetzt wird. Wenn leer, läuft der Prozess die ganze Zeit.
    Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.StartTime22:00
    The start time after which the process will start to run until the specified end time. If empty, the process runs all the time.

    Query

    Two tables are provided, CompressedA15 (15 minute time slices) and CompressedADay (day compression), aggregated according to the following query
    Die Startzeit, nach der der Prozess beginnt, bis zur angegebenen Endzeit zu laufen. Wenn leer, läuft der Prozess die ganze Zeit.

    Abfrage

    Es werden zwei Tabellen bereitgestellt, CompressedA15 (15-Minuten-Zeitabschnitte) und CompressedADay (Tageskomprimierung), die gemäß der folgenden Abfrage aggregiert werden:

    Translations Ignore


    Code Block
    titleCompressedA Query
    SELECT      (Various Aggregations)
    FROM        JTELStats.StatisticsPartA a
    LEFT JOIN   JTELStats.AcdStatisticsPartB acdb
        ON      a.ID = acdb.StatisticsPartAID
    LEFT JOIN   JTELStats.StatisticsPartB b
        ON      acdb.ID = b.AcdStatisticsPartBID
    WHERE       ( a.ClientsID = _ClientsID )
                AND
                ( a.dtCallStart BETWEEN _Timeslice_Begin AND TIMESTAMPADD( MINUTE, 15, _Timeslice_Begin ) )
    GROUP BY    a.ID;

    Partitioning and Aggregations 

    When the data is aggregated, it is divided into several consistent partitions, according to the following logic. The resulting aggregations then either count a call, if a condition is met, or determine the time between two timestamps.

    Inbound and Outbound

    bOutbound

    Fields

    0

    Inbound

    1Outbound

    Inbound: ServiceNumber_* Fields

    Partitions all records only using fields from



    Partitionierung und Aggregationen 

    Wenn die Daten aggregiert werden, werden sie in mehrere konsistente Partitionen unterteilt, die folgender Logik folgen. Die daraus resultierenden Aggregationen zählen dann entweder einen Anruf, wenn eine Bedingung erfüllt ist, oder ermitteln die Zeit zwischen zwei Zeitstempeln.

    Eingehend und Ausgehend

    bOutbound

    Felder

    0

    Eingehend

    1Ausgehend

    Eingehend: ServiceNumber_* Felder

    Partitioniert alle Datensätze nur anhand der Felder aus StatisticsPartA.

    dtCallConnect

    bCallerHangup

    CauseCodesID

    Field

    NULL

    <> 0

    Abandoned


    Verlassen

    NULL

    0

    17

    Busy

    Besetzt

    NULL

    0

    <> 17

    Reject

    Abgelehnt

    NOT NULL



    Offhook

    Inbound

    Eingehend: ACD_*

    Fields

    Partitions records only for which an AcdStatisticsPartB record exists, and for which it is not a group transfer or group overflow.

    The condition used is

    Felder

    Partitioniert nur Datensätze, für die ein AcdStatisticsPartB-Datensatz existiert und bei denen es sich nicht um eine Gruppenweiterleitung oder einen Gruppenüberlauf handelt.

    Die verwendete Bedingung ist:

    Translations Ignore


    Code Block
    ( AcdStatisticsPartB.ID IS NOT NULL ) AND ( AcdStatisticsPartB.AcdOriginGroupsID IS NULL )
    Inbound



    Eingehend: Queue_*

    Fields

    Further partitions records which have entered the ACD, only calls which enter the queue.

    The additional condition used is

    Felder

    Partitioniert weiterhin Datensätze, welche in die ACD eingetreten sind, nur Anrufe die die Warteschlange betreten.

    Die zusätzlich verwendete Bedingung ist:

    Translations Ignore


    Code Block
    ( AcdStatisticsPartB.dtQueueStart IS NOT NULL )
    Inbound



    Eingehend: Queue_Serviced_* Fields

    Further partition on calls which entered the queue, only calls answered by an agent are considered (calls were definitely offhook). The condition used is:

    The additional condition used is

    Partitioniert weiterhin Anrufe, welche die Warteschlange betreten haben, nur dievon einem Agenten beantwortete Anrufe werden berücksichtigt(Anrufe waren definitiv offhook). Die verwendete Bedingung ist:

    Die zusätzlich verwendete Bedingung ist:

    Translations Ignore


    Code Block
    ( StatisticsPartA.dtCallConnect IS NOT NULL ) AND ( AcdStatisticsPartB.dtAgentConnect IS NOT NULL )
    Inbound



    Eingehend: Queue_NotServiced_* Fields

    Further partition on calls which entered the queue, and were offhook, only calls not answered by an agent are considered. The condition used is

    Partitioniert weiterhin Anrufe, welche die Warteschlange betreten haben, und offhook waren, nur die nicht von einem Agenten beantworteten Anrufe werden berücksichtigt. Die verwendete Bedingung ist:

    Translations Ignore


    Code Block
    ( StatisticsPartA.dtCallConnect IS NOT NULL ) AND ( AcdStatisticsPartB.dtAgentConnect IS NULL )
    These calls are further partitioned into Abandoned and Reject as follows



    Diese Anrufe werden wie folgt partitioniert zu Verlassen und Abgelehnt wie folgt:

    Translations Ignore


    Code Block
    a.bCallerHangup = 0  --> System hangup (Reject)
    a.bCallerHangup <> 0  --> Caller hangup (Abandoned)
    Inbound



    Eingehend: AgentCalls_*, GroupTransfer_*, AgentTransfer_*, NumberTransfer_*

    FieldsOnly records which meet the following condition are considered

    Felder

    Es werden nur Datensätze berücksichtigt, die die folgende Bedingung erfüllen:

    Translations Ignore


    Code Block
    ( StatisticsPartB.ID IS NOT NULL )
    I




    D.

    e. where an agent or destination call was made.The following partitions are used:

    h., wo ein Agent- oder Zielanruf getätigt wurde.

    Die folgenden Partitionen werden verwendet:

    Bedingung

    Partition


    Translations Ignore

    Condition

    Partition

    StatisticsPartB.StatisticsPartBOrigin

    IS

    NULL


    AgentCalls_


    Translations Ignore
    ( StatisticsPartB.StatisticsPartBOrigin IS NOT NULL )
    AND
    ( StatisticsPartB.AcdGroupsID <> AcdStatisticsPartB.AcdGroupsID )


    GroupTransfer_


    Translations Ignore
    ( StatisticsPartB.StatisticsPartBOrigin IS NOT NULL )
    AND
    ( StatisticsPartB.AcdGroupsID = AcdStatisticsPartB.AcdGroupsID )
    AND 
    ( StatisticsPartB.bTransferAgent <> 0 )


    AgentTransfer_

    Translations Ignore
    ( StatisticsPartB.StatisticsPartBOrigin IS NOT NULL )
    AND 
    ( StatisticsPartB.AcdGroupsID = AcdStatisticsPartB.AcdGroupsID )
    AND 
    ( StatisticsPartB.bTransferExternalNumber <> 0 )


    NumberTransfer_

    Further partitioning is according to the CONNRES field.

    Outbound

    Die weitere Partitionierung erfolgt nach dem Feld CONNRES.

    Ausgehend

    Bedingung

    Partition


    Translations Ignore

    Condition

    Partitioning

    DiallerCampaignsID IS NULL


    ClickToDial_


    Translations Ignore

    DiallerCampaignsID IS NOT NULL


    Dialler_
    Inbound and Outbound: Partitioning on

    Eingehend und Ausgehend: Partitionierung auf CONNRES


    CONNRES

    Result

    Ergebnis

    1

    OK

    2

    NoAnswer

    3

    Busy

    4

    CallerHangup

    6

    Rejected

    0, 5, > 6

    Failure

    Tables

    Tabellen

    CompressedA15

    This table contains compressed statistics for 15 minute intervals

    Diese Tabelle enthält komprimierte Statistiken für 15-Minuten-Intervalle.

    CompressedADay

    This table contains compressed statistics for day intervals.

    Fields

    The field definitions are essentially the same, in both tables, only the aggregation intervals are different.

    Diese Tabelle enthält komprimierte Statistiken für Tagesintervalle.

    Felder

    Die Felddefinitionen sind in beiden Tabellen im Wesentlichen identisch, nur die Aggregationsintervalle sind unterschiedlich.

    FeldTypInhalte
    FieldTypeContents
    IDINT
    A unique ID assigned to each record. Note, that IDs are not re-used, since if an interval is recalculated, the record is added with REPLACE, i.e. the existing record will be delteted and a new record with a new ID will be created in its place
    Eine einzigartige ID, die jedem Datensatz zugewiesen wird. Beachten Sie, dass die IDs nicht wiederverwendet werden, denn wenn ein Intervall neu berechnet wird, wird der Datensatz mit REPLACE hinzugefügt, d.h. der bestehende Datensatz wird gelöscht und ein neuer Datensatz mit einer neuen ID wird an seiner Stelle erstellt.
    ClientsIDINTID
    of client from Clients table.
    des Mandanten aus der Clients Tabelle
    ServiceNumbersIDINTID
    of service number from ServiceNumbers table
    der Servicenummer aus der ServiceNumbers Tabelle.
    DynamicPriorityGroupsIDINTID
    of dynamic priority group from DynamicPriorityGroups table, or 0 if no dynamic priority group was used
    der Dynamic Priority Group aus der DynamicPriorityGroups Tabelle, oder 0, wenn keine Dynamic Priority Group zugewiesen wurde.
    RoutingApplicationsIDINTID
    of the routing application from the RoutingApplications table, or 0 if none was used
    der Routingapplikation aus der RoutingApplications Tabelle, oder 0, wenn die Anwendung nicht verfügbar ist.
    AcdGroupsIDINTID
    of the ACD group, from the AcdGroups table, or 0 for calls which did not enter the ACD
    der ACD-Gruppe aus der Tabelle AcdGroups, oder 0, wenn keine ACD-Gruppe verfügbar ist.
    DiallerCampaignsIDINTID
    of the dialler campaign, from the DiallerCampaigns table, or 0 for calls which did not use a dialler campaign
    der Dialer Kampagne aus der Tabelle DiallerCampaigns, oder 0, wenn keine Dialer Kampagne verfügbar ist.
    dtIntervalStartDATETIME
    Date and Time of the start of the interval
    Datum und Uhrzeit des Beginns des Intervalls.
    ServiceNumbersRootNumberVARCHAR(32)
    The RootNumber field of the service number, as configured when the compressed statistics were created
    Das RootNumber Feld der Servicenummer, wie bei der Erstellung der compressed statistics konfiguriert.
    ServiceNumbersNameVARCHAR(64)
    The Name field of the service number, as configured when the compressed statistics were created
    Das Name-Feld der Servicenummer, wie bei der Erstellung der compressed statistics konfiguriert.
    ServiceNumbersName2VARCHAR(64)
    The Name2 field of the service number, as configured when the compressed statistics were created
    Das Name2-Feld der Servicenummer, wie bei der Erstellung der compressed statistics konfiguriert.
    DynamicPriorityGroupsNameVARCHAR(64)
    The Name field from the DynamicPriorityGroups table, as configured when the compressed statistics were created
    Das Name-Feld aus der Tabelle DynamicPriorityGroups, wie bei der Erstellung der compressed statistics konfiguriert.
    AcdGroupsNameVARCHAR(64)
    The Name field from the AcdGroups table, as configured when the compressed statistics were created
    Das Name-Feld aus der AcdGroups Tabelle, wie bei der Erstellung der compressed statistics konfiguriert.
    DiallerCampaignsNameVARCHAR(64)
    The Name field from the DiallerCampaigns table, as configured when the compressed statistics were created
    Das Name-Feld aus der Dialer Kampagne Tabelle, wie bei der Erstellung der compressed statistics konfiguriert.
    ServiceNumber_CountINT
    Inbound calls to service number, total
    Eingehende Anrufe zu Service Nummer, gesamt.
    ServiceNumber_Abandoned_CountINT
    Inbound calls to service number, abandoned (caller hangup
    Eingehende Anrufe zu Service Nummer, verlassen (Auflegen durch Anrufer).
    ServiceNumber_Abandoned_Time_CallStart_CallEnd_Total BIGINT
    Inbound calls to service number, abandoned (caller hangup), total seconds from dtCallStart to
    Eingehende Anrufe zu Service Nummer, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtCallStart bis dtCallEnd.
    ServiceNumber_Abandoned_Time_CallStart_CallEnd_MaxINT
    Inbound calls to service number, abandoned (caller hangup), max seconds from dtCallStart to
    Eingehende Anrufe zu Service Nummer, verlassen (Auflegen durch Anrufer), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    ServiceNumber_Busy_CountINT
    Inbound calls to service number, busy (from system
    Eingehende Anrufe zu Service Nummer, besetzt (von System).
    ServiceNumber_Busy_Time_CallStart_CallEnd_TotalBIGINT
    Inbound calls to service number, busy (from system), total seconds from dtCallStart to
    Eingehende Anrufe zu Service Nummer, besetzt (von System), Sekunden gesamt ab dtCallStart bis dtCallEnd.
    ServiceNumber_Busy_Time_CallStart_CallEnd_MaxINT
    Inbound calls to service number, busy (from system), max seconds from dtCallStart to
    Eingehende Anrufe zu Service Nummer, besetzt (von System), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    ServiceNumber_Reject_CountINT
    Inbound calls to service number, rejected (by
    Eingehende Anrufe zu Service Nummer, abgelehnt (durch system).
    ServiceNumber_Reject_Time_CallStart_CallEnd_TotalBIGINT
    Inbound calls to service number, rejected (by system), total seconds from dtCallStart to
    Eingehende Anrufe zu Service Nummer, abgelehnt (durch system), Sekunden gesamt ab dtCallStart bis dtCallEnd.
    ServiceNumber_Reject_Time_CallStart_CallEnd_MaxINT
    Inbound calls to service number, rejected (by system), max seconds from dtCallStart to
    Eingehende Anrufe zu Service Nummer, abgelehnt (durch system), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    ServiceNumber_Offhook_CountINT
    Inbound calls to service number, system
    Eingehende Anrufe zu Service Nummer, System offhook.
    ServiceNumber_Offhook_Time_CallStart_CallEnd_TotalBIGINT
    Inbound calls to service number, system offhook, total seconds from dtCallStart to
    Eingehende Anrufe zu Service Nummer, System offhook, Sekunden gesamt ab dtCallStart bis dtCallEnd.
    ServiceNumber_Offhook_Time_CallStart_CallEnd_MaxINT
    Inbound calls to service number, system offhook, max seconds from dtCallStart to
    Eingehende Anrufe zu Service Nummer, System offhook, Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    ServiceNumber_Offhook_Time_CallConnect_CallEnd_TotalBIGINT
    Inbound calls to service number, system offhook, total seconds from dtCallConnect to
    Eingehende Anrufe zu Service Nummer, System offhook, Sekunden gesamt ab dtCallConnect bis dtCallEnd.
    ServiceNumber_Offhook_Time_CallConnect_CallEnd_MaxINT
    Inbound calls to service number, system offhook, max seconds from dtCallConnect to
    Eingehende Anrufe zu Service Nummer, System offhook, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd.
    ACD_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    total
    gesamt.
    ACD_StandardService_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD in
    standard service times, total
    standardmäßigen Betriebszeiten, gesamt.
    ACD_NotStandardService_CountINT
    Inbound calls to ACD not in standard service times, total.
    Eingehende Anrufe an ACD in nicht standardmäßigen Betriebszeiten, gesamt
    ACD_Abandoned_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    abandoned (caller hangup
    verlassen (Auflegen durch Anrufer).
    ACD_Abandoned_Time_CallStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    abandoned (caller hangup), total seconds from dtCallStart to
    verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtCallStart bis dtCallEnd.
    ACD_Abandoned_Time_CallStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    abandoned (caller hangup), max seconds from dtCallStart to
    verlassen (Auflegen durch Anrufer), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    ACD_Abandoned_Time_GroupStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    abandoned (caller hangup), total seconds from dtGroupStart to
    verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    ACD_Abandoned_Time_GroupStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    abandoned (caller hangup), max seconds from dtGroupStart to
    verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    ACD_Busy_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    busy
    besetzt (
    from
    von system).
    ACD_Busy_Time_CallStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    busy
    besetzt (
    from
    von system),
    total seconds from dtCallStart to
    Sekunden gesamt ab dtCallStart bis dtCallEnd.
    ACD_Busy_Time_CallStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    busy
    besetzt (
    from
    von system),
    max seconds from dtCallStart to
    Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    ACD_Busy_Time_GroupStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    busy
    besetzt (
    from
    von system),
    total seconds from dtGroupStart to
    Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    ACD_Busy_Time_GroupStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    busy
    besetzt (
    from
    von system),
    max seconds from dtGroupStart to
    Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    ACD_Reject_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    rejected
    abgelehnt (
    by
    durch system).
    ACD_Reject_Time_CallStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    rejected
    abgelehnt (
    by
    durch system),
    total seconds from dtCallStart to
    Sekunden gesamt ab dtCallStart bis dtCallEnd.
    ACD_Reject_Time_CallStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    rejected
    abgelehnt (
    by
    durch system),
    max seconds from dtCallStart to
    Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    ACD_Reject_Time_GroupStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    rejected
    abgelehnt (
    by
    durch system),
    total seconds from dtGroupStart to
    Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    ACD_Reject_Time_GroupStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    rejected
    abgelehnt (
    by
    durch system),
    max seconds from dtGroupStart to
    Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    ACD_Offhook_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    system
    System offhook.
    ACD_Offhook_Time_CallStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    system
    System offhook,
    total seconds from dtCallStart to
    Sekunden gesamt ab dtCallStart bis dtCallEnd.
    ACD_Offhook_Time_CallStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    system
    System offhook,
    max seconds from dtCallStart to
    Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    ACD_Offhook_Time_CallConnect_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    system
    System offhook,
    total seconds from dtCallConnect to
    Sekunden gesamt ab dtCallConnect bis dtCallEnd.
    ACD_Offhook_Time_CallConnect_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    system
    System offhook,
    max seconds from dtCallConnect to
    Sekunden Höchstwert ab dtCallConnect bis dtCallEnd.
    ACD_Offhook_Time_GroupStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    system
    System offhook,
    total seconds from dtGroupStart to
    Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    ACD_Offhook_Time_GroupStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    system
    System offhook,
    max seconds from dtGroupStart to
    Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    Queue_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, total
    in Warteschlange eingetreten, gesamt.
    Queue_StandardService_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue in standard service times, total
    in Warteschlange eingetreten in standardmäßigen Betriebszeiten, gesamt.
    Queue_NotStandardService_CountINT
    Inbound calls to ACD, entered queue not in standard service times, total
    Eingehende Anrufe an ACD, in Warteschlange eingetreten in nicht standardmäßigen Betriebszeiten, gesamt.
    Queue_Abandoned_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, abandoned (caller hangup
    in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer).
    Queue_Abandoned_Time_CallStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, abandoned (caller hangup), total seconds from dtCallStart to
    in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtCallStart bis dtCallEnd.
    Queue_Abandoned_Time_CallStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, abandoned (caller hangup), max seconds from dtCallStart to
    in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    Queue_Abandoned_Time_GroupStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, abandoned (caller hangup), total seconds from dtGroupStart to
    in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    Queue_Abandoned_Time_GroupStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, abandoned (caller hangup), max seconds from dtGroupStart to
    in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    Queue_Abandoned_Time_QueueStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, abandoned (caller hangup), total seconds from dtQueueStart to
    in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtQueueStart bis dtCallEnd.
    Queue_Abandoned_Time_QueueStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, abandoned (caller hangup), max seconds from dtQueueStart to
    in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer), Sekunden Höchstwert ab dtQueueStart bis dtCallEnd.
    Queue_Busy_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, busy (from
    in Warteschlange eingetreten, besetzt (von system).
    Queue_Busy_Time_CallStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, busy (from
    in Warteschlange eingetreten, besetzt (von system),
    total seconds from dtCallStart to
    Sekunden gesamt ab dtCallStart bis dtCallEnd.
    Queue_Busy_Time_CallStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, busy (from
    in Warteschlange eingetreten, besetzt (von system),
    max seconds from dtCallStart to
    Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    Queue_Busy_Time_GroupStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, busy (from
    in Warteschlange eingetreten, besetzt (von system),
    total seconds from dtGroupStart to
    Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    Queue_Busy_Time_GroupStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, busy (from
    in Warteschlange eingetreten, besetzt (von system),
    max seconds from dtGroupStart to
    Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    Queue_Busy_Time_QueueStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, busy (from
    in Warteschlange eingetreten, besetzt (von system),
    total seconds from dtQueueStart to
    Sekunden gesamt ab dtQueueStart bis dtCallEnd.
    Queue_Busy_Time_QueueStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, busy (from
    in Warteschlange eingetreten, besetzt (von system),
    max seconds from dtQueueStart to
    Sekunden Höchstwert ab dtQueueStart bis dtCallEnd.
    Queue_Reject_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, rejected (by
    in Warteschlange eingetreten, abgelehnt (durch system).
    Queue_Reject_Time_CallStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, rejected (by
    in Warteschlange eingetreten, abgelehnt (durch system),
    total seconds from dtCallStart to
    Sekunden gesamt ab dtCallStart bis dtCallEnd.
    Queue_Reject_Time_CallStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, rejected (by
    in Warteschlange eingetreten, abgelehnt (durch system),
    max seconds from dtCallStart to
    Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    Queue_Reject_Time_GroupStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, rejected (by
    in Warteschlange eingetreten, abgelehnt (durch system),
    total seconds from dtGroupStart to
    Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    Queue_Reject_Time_GroupStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, rejected (by
    in Warteschlange eingetreten, abgelehnt (durch system),
    max seconds from dtGroupStart to
    Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    Queue_Reject_Time_QueueStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, rejected (by
    in Warteschlange eingetreten, abgelehnt (durch system),
    total seconds from dtQueueStart to
    Sekunden gesamt ab dtQueueStart bis dtCallEnd.
    Queue_Reject_Time_QueueStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, rejected (by
    in Warteschlange eingetreten, abgelehnt (durch system),
    max seconds from dtQueueStart to
    Sekunden Höchstwert ab dtQueueStart bis dtCallEnd.
    Queue_Serviced_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent
    in Warteschlange eingetreten, von Agent bedient.
    Queue_Serviced_SLA1_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, time from dtCallStart to
    in Warteschlange eingetreten, von Agent bedient, Zeit ab dtCallStart bis dtAgentConnect <= ServiceLevelSeconds.
    Queue_Serviced_SLA2_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, time from dtCallConnect to
    in Warteschlange eingetreten, von Agent bedient, Zeit ab dtCallConnect bis dtAgentConnect <= ServiceLevelSeconds.
    Queue_Serviced_SLA3_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, time from dtGroupStart to
    in Warteschlange eingetreten, von Agent bedient, Zeit ab dtGroupStart bis dtAgentConnect <= ServiceLevelSeconds.
    Queue_Serviced_SLA4_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, time from dtQueueStart to
    in Warteschlange eingetreten, von Agent bedient, Zeit ab dtQueueStart bis dtAgentConnect <= ServiceLevelSeconds.
    Queue_Serviced_StandardService_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, in standard service times
    in Warteschlange eingetreten, von Agent bedient, in standardmäßigen Betriebszeiten.
    Queue_Serviced_StandardService_SLA1_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, in standard service times, time from dtCallStart to
    in Warteschlange eingetreten, von Agent bedient, in standardmäßigen Betriebszeiten, Zeit ab dtCallStart bis dtAgentConnect <= ServiceLevelSeconds.
    Queue_Serviced_StandardService_SLA2_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, in standard service times, time from dtCallConnect to
    in Warteschlange eingetreten, von Agent bedient, in standardmäßigen Betriebszeiten, Zeit ab dtCallConnect bis dtAgentConnect <= ServiceLevelSeconds.
    Queue_Serviced_StandardService_SLA3_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, in standard service times, time from dtGroupStart to
    in Warteschlange eingetreten, von Agent bedient, in standardmäßigen Betriebszeiten, Zeit ab dtGroupStart bis dtAgentConnect <= ServiceLevelSeconds.
    Queue_Serviced_StandardService_SLA4_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, in standard service times, time from dtQueueStart to
    in Warteschlange eingetreten, von Agent bedient, in standardmäßigen Betriebszeiten, Zeit ab dtQueueStart bis dtAgentConnect <= ServiceLevelSeconds.
    Queue_Serviced_NotStandardService_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, not in standard service times
    in Warteschlange eingetreten, von Agent bedient, in nicht standardmäßigen Betriebszeiten.
    Queue_Serviced_NotStandardService_SLA1_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, not in standard service times, time from dtCallStart to
    in Warteschlange eingetreten, von Agent bedient, in nichtstandardmäßigen Betriebszeiten, Zeit ab dtCallStart bis dtAgentConnect <= ServiceLevelSeconds.
    Queue_Serviced_NotStandardService_SLA2_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, not in standard service times, time from dtCallConnect to
    in Warteschlange eingetreten, von Agent bedient, in nicht standardmäßigen Betriebszeiten, Zeit ab dtCallConnect bis dtAgentConnect <= ServiceLevelSeconds.
    Queue_Serviced_NotStandardService_SLA3_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, not in standard service times, time from dtGroupStart to
    in Warteschlange eingetreten, von Agent bedient, in nicht standardmäßigen Betriebszeiten, Zeit ab dtGroupStart bis dtAgentConnect <= ServiceLevelSeconds.
    Queue_Serviced_NotStandardService_SLA4_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, not in standard service times, time from dtQueueStart to
    in Warteschlange eingetreten, von Agent bedient, in nicht standardmäßigen Betriebszeiten, Zeit ab dtQueueStart bis dtAgentConnect <= ServiceLevelSeconds.
    Queue_Serviced_Time_CallStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, total seconds from dtCallStart to
    in Warteschlange eingetreten, von Agent bedient, Sekunden gesamt ab dtCallStart bis dtCallEnd.
    Queue_Serviced_Time_CallStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, max seconds from dtCallStart to
    in Warteschlange eingetreten, von Agent bedient, Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    Queue_Serviced_Time_CallStart_AgentConnect_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent
    in Warteschlange eingetreten, von Agent bedient, total seconds
    from
    ab dtCallStart
    to
    bis dtAgentConnect.
    Queue_Serviced_Time_CallStart_AgentConnect_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent
    in Warteschlange eingetreten, von Agent bedient, max seconds
    from
    ab dtCallStart
    to
    bis dtAgentConnect.
    Queue_Serviced_Time_CallConnect_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, total seconds from dtCallConnect to
    in Warteschlange eingetreten, von Agent bedient, Sekunden gesamt ab dtCallConnect bis dtCallEnd.
    Queue_Serviced_Time_CallConnect_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, max seconds from dtCallConnect to
    in Warteschlange eingetreten, von Agent bedient, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd.
    Queue_Serviced_Time_CallConnect_AgentConnect_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent
    in Warteschlange eingetreten, von Agent bedient, total seconds
    from
    ab dtCallConnect
    to
    bis dtAgentConnect.
    Queue_Serviced_Time_CallConnect_AgentConnect_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent
    in Warteschlange eingetreten, von Agent bedient, max seconds
    from
    ab dtCallConnect
    to
    bis dtAgentConnect.
    Queue_Serviced_Time_GroupStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, total seconds from dtGroupStart to
    in Warteschlange eingetreten, von Agent bedient, Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    Queue_Serviced_Time_GroupStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, max seconds from dtGroupStart to
    in Warteschlange eingetreten, von Agent bedient, Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    Queue_Serviced_Time_GroupStart_AgentConnect_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent
    in Warteschlange eingetreten, von Agent bedient, total seconds
    from
    ab dtGroupStart
    to
    bis dtAgentConnect.
    Queue_Serviced_Time_GroupStart_AgentConnect_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent
    in Warteschlange eingetreten, von Agent bedient, max seconds
    from
    ab dtGroupStart
    to
    bis dtAgentConnect.
    Queue_Serviced_Time_QueueStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, total seconds from dtQueueStart to
    in Warteschlange eingetreten, von Agent bedient, Sekunden gesamt ab dtQueueStart bis dtCallEnd.
    Queue_Serviced_Time_QueueStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent, max seconds from dtQueueStart to
    in Warteschlange eingetreten, von Agent bedient, Sekunden Höchstwert ab dtQueueStart bis dtCallEnd.
    Queue_Serviced_Time_QueueStart_AgentConnect_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent
    in Warteschlange eingetreten, von Agent bedient, total seconds
    from
    ab dtQueueStart
    to
    bis dtAgentConnect.
    Queue_Serviced_Time_QueueStart_AgentConnect_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, serviced by agent
    in Warteschlange eingetreten, von Agent bedient, max seconds
    from
    ab dtQueueStart
    to
    bis dtAgentConnect.
    Queue_NotServiced_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, were offhook, not serviced by agent
    in warteschlange eingetreten, ofhook gewesen, nicht von Agent bedient.
    Queue_NotServiced_StandardService_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, were offhook, not serviced by agent, in standard service times
    in warteschlange eingetreten, ofhook gewesen, nicht von Agent bedient, in standardmäßigen Betriebszeiten.
    Queue_NotServiced_NotStandardService_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, were offhook, not serviced by agent, not in standard service times
    in warteschlange eingetreten, ofhook gewesen, nicht von Agent bedient, in nicht standardmäßigen Betriebszeiten.
    Queue_NotServiced_Abandoned_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, caller hangup
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer.
    Queue_NotServiced_Abandoned_Time_CallStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, caller hangup, total seconds from dtCallStart to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden gesamt ab dtCallStart bis dtCallEnd.
    Queue_NotServiced_Abandoned_Time_CallStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, caller hangup, max seconds from dtCallStart to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    Queue_NotServiced_Abandoned_Time_CallConnect_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, caller hangup, total seconds from dtCallConnect to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden gesamt ab dtCallConnect bis dtCallEnd.
    Queue_NotServiced_Abandoned_Time_CallConnect_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, caller hangup, max seconds from dtCallConnect to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd.
    Queue_NotServiced_Abandoned_Time_GroupStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, caller hangup, total seconds from dtGroupStart to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    Queue_NotServiced_Abandoned_Time_GroupStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, caller hangup, max seconds from dtGroupStart to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    Queue_NotServiced_Abandoned_Time_QueueStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, caller hangup, total seconds from dtQueueStart to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden gesamt ab dtQueueStart bis dtCallEnd.
    Queue_NotServiced_Abandoned_Time_QueueStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, caller hangup, max seconds from dtQueueStart to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden Höchstwert ab dtQueueStart bis dtCallEnd.
    Queue_NotServiced_Reject_CountINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, system hangup
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System.
    Queue_NotServiced_Reject_Time_CallStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, system hangup, total seconds from dtCallStart to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden gesamt ab dtCallStart bis dtCallEnd.
    Queue_NotServiced_Reject_Time_CallStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, system hangup, max seconds from dtCallStart to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
    Queue_NotServiced_Reject_Time_CallConnect_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, system hangup, total seconds from dtCallConnect to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden gesamt ab dtCallConnect bis dtCallEnd.
    Queue_NotServiced_Reject_Time_CallConnect_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, system hangup, max seconds from dtCallConnect to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd.
    Queue_NotServiced_Reject_Time_GroupStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, system hangup, total seconds from dtGroupStart to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    Queue_NotServiced_Reject_Time_GroupStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, system hangup, max seconds from dtGroupStart to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden gesamt ab dtGroupStart bis dtCallEnd.
    Queue_NotServiced_Reject_Time_QueueStart_CallEnd_TotalBIGINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, system hangup, total seconds from dtQueueStart to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden gesamt ab dtQueueStart bis dtCallEnd.
    Queue_NotServiced_Reject_Time_QueueStart_CallEnd_MaxINT
    Inbound calls to
    Eingehende Anrufe an ACD,
    entered queue, not serviced by agent, system hangup, max seconds from dtQueueStart to
    in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden Höchstwert ab dtQueueStart bis dtCallEnd.
    AgentCalls_CountINT
    Inbound calls to agents, total
    Eingehende Anrufe an Agenten, gesamt.
    AgentCalls_OK_CountINT
    Inbound calls to agents, agent answered
    Eingehende Anrufe an Agenten, Agent hat angenommen.
    AgentCalls_OK_Time_CallStart_CallConnect_TotalBIGINT
    Inbound calls to agents, agent answered, total seconds from dtCallStart to
    Eingehende Anrufe an Agenten, Agent hat angenommen, Sekunden gesamt ab dtCallStart bis dtCallConnect (agent leg).
    AgentCalls_OK_Time_CallStart_CallConnect_MaxINT
    Inbound calls to agents, agent answered, max seconds from dtCallStart to
    Eingehende Anrufe an Agenten, Agent hat angenommen, Sekunden Höchstwert ab dtCallStart bis dtCallConnect (agent leg).
    AgentCalls_OK_Time_CallConnect_CallEnd_TotalBIGINT
    Inbound calls to agents, agent answered, total seconds from dtCallConnect to
    Eingehende Anrufe an Agenten, Agent hat angenommen, Sekunden gesamt ab dtCallConnect bis dtCallEnd (agent leg).
    AgentCalls_OK_Time_CallConnect_CallEnd_MaxINT
    Inbound calls to agents, agent answered, max seconds from dtCallConnect to
    Eingehende Anrufe an Agenten, Agent hat angenommen, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd (agent leg).
    AgentCalls_OK_PostCall_CountINT
    Inbound calls to agents, agent answered, post call work required
    Eingehende Anrufe an Agenten, Agent hat angenommen, Nachbearbeitung erforderlich.
    AgentCalls_OK_PostCall_Time_TotalBIGINT
    Inbound calls to agents, agent answered, post call work required, total seconds
    Eingehende Anrufe an Agenten, Agent hat angenommen, Nachbearbeitung erforderlich, Sekunden gesamt.
    AgentCalls_OK_PostCall_Time_MaxINT
    Inbound calls to agents, agent answered, post call work required, max seconds
    Eingehende Anrufe an Agenten, Agent hat angenommen, Nachbearbeitung erforderlich, Sekunden Höchstwert.
    AgentCalls_NoAnswer_CountINT
    Inbound calls to agents, no answer
    Eingehende Anrufe an Agenten, keine Antwort.
    AgentCalls_Busy_CountINT
    Inbound calls to agents, busy
    Eingehende Anrufe an Agenten, besetzt.
    AgentCalls_CallerHangup_CountINT
    Inbound calls to agents, caller hangup during transfer
    Eingehende Anrufe an Agenten, Auflegen durch Anrufer während der Weiterleitung.
    AgentCalls_Reject_CountINT
    Inbound calls to agents, rejected
    Eingehende Anrufe an Agenten, abgelehnt.
    AgentCalls_Failure_CountINT
    Inbound calls to agents, failed
    Eingehende Anrufe an Agenten, fehlgeschlagen.
    GroupTransfer_CountINT
    Inbound, transfer to group, total
    Eingehend, Weiterleitung an Gruppe, gesamt.
    GroupTransfer_OK_CountINT
    Inbound, transfer to group
    Eingehend, Weiterleitung an Gruppe, OK.
     
    GroupTransfer_OK_Time_CallStart_CallConnect_TotalBIGINT
    Inbound, transfer to group
    Eingehend, Weiterleitung an Gruppe, OK,
    total seconds from dtCallStart to
    Sekunden gesamt ab dtCallStart bis dtCallConnect (
    to
    zu group leg).
    GroupTransfer_OK_Time_CallStart_CallConnect_MaxINT
    Inbound, transfer to group
    Eingehend, Weiterleitung an Gruppe, OK,
    max seconds from dtCallStart to
    Sekunden Höchstwert ab dtCallStart bis dtCallConnect (
    to
    zu group leg).
    GroupTransfer_OK_Time_CallConnect_CallEnd_TotalBIGINT
    Inbound, transfer to group
    Eingehend, Weiterleitung an Gruppe, OK,
    total seconds from dtCallConnect to
    Sekunden gesamt ab dtCallConnect bis dtCallEnd (
    to
    zu group leg).
    GroupTransfer_OK_Time_CallConnect_CallEnd_MaxINT
    Inbound, transfer to group
    Eingehend, Weiterleitung an Gruppe, OK,
    max seconds from dtCallConnect to
    Sekunden Höchstwert ab dtCallConnect bis dtCallEnd (
    to
    zu group leg).
    GroupTransfer_NoAnswer_CountINT
    Inbound, transfer to group, no answer
    Eingehend, Weiterleitung an Gruppe, keine Antwort.
    GroupTransfer_Busy_CountINT
    Inbound, transfer to group, busy
    Eingehend, Weiterleitung an Gruppe, besetzt.
    GroupTransfer_CallerHangup_CountINT
    Inbound, transfer to group, caller hangup during transfer
    Eingehend, Weiterleitung an Gruppe, Auflegen durch Anrufer während der Weiterleitung.
    GroupTransfer_Reject_CountINT
    Inbound, transfer to group, rejected
    Eingehend, Weiterleitung an Gruppe, abgelehnt.
    GroupTransfer_Failure_CountINT
    Inbound, transfer to group, failed
    Eingehend, Weiterleitung an Gruppe, fehlgeschlagen.
    AgentTransfer_CountINT
    Inbound, transfer to agent, total.
    Eingehend, Weiterleitung an Agent, gesamt. 
    AgentTransfer_OK_CountINT
    Inbound, transfer to agent
    Eingehend, Weiterleitung an Agent, OK. 
    AgentTransfer_OK_Time_CallStart_CallConnect_TotalBIGINT
    Inbound, transfer to agent
    Eingehend, Weiterleitung an Agent, OK,
    total seconds from dtCallStart to
    Sekunden gesamt ab dtCallStart bis dtCallConnect (
    to
    zu group leg).
    AgentTransfer_OK_Time_CallStart_CallConnect_MaxINT
    Inbound, transfer to agent
    Eingehend, Weiterleitung an Agent, OK,
    max seconds from dtCallStart to
    Sekunden Höchstwert ab dtCallStart bis dtCallConnect (
    to
    zu group leg).
    AgentTransfer_OK_Time_CallConnect_CallEnd_TotalBIGINT
    Inbound, transfer to agent
    Eingehend, Weiterleitung an Agent, OK,
    total seconds from dtCallConnect to
    Sekunden gesamt ab dtCallConnect bis dtCallEnd (
    to
    zu group leg).
    AgentTransfer_OK_Time_CallConnect_CallEnd_MaxINT
    Inbound, transfer to agent
    Eingehend, Weiterleitung an Agent, OK,
    max seconds from dtCallConnect to
    Sekunden Höchstwert ab dtCallConnect bis dtCallEnd (
    to
    zu group leg).
    AgentTransfer_NoAnswer_CountINT
    Inbound, transfer to agent, no answer
    Eingehend, Weiterleitung an Agent, keine Antwort.
    AgentTransfer_Busy_CountINT
    Inbound, transfer to agent, busy
    Eingehend, Weiterleitung an Agent, besetzt.
    AgentTransfer_CallerHangup_CountINT
    Inbound, transfer to agent, caller hangup during transfer
    Eingehend, Weiterleitung an Agent, Auflegen durch Anrufer während der Weiterleitung.
    AgentTransfer_Reject_CountINT
    Inbound, transfer to agent, rejected
    Eingehend, Weiterleitung an Agent, abgelehnt.
    AgentTransfer_Failure_CountINT
    Inbound, transfer to agent, failed
    Eingehend, Weiterleitung an Agent, fehlgeschlagen.
    NumberTransfer_CountINT
    Inbound, transfer to number, total
    Eingehend, Weiterleitung an Nummer, gesamt.
    NumberTransfer_OK_CountINT
    Inbound, transfer to number
    Eingehend, Weiterleitung an Nummer, OK. 
    NumberTransfer_OK_Time_CallStart_CallConnect_TotalBIGINT
    Inbound, transfer to number
    Eingehend, Weiterleitung an Nummer, OK,
    total seconds from dtCallStart to
    Sekunden gesamt ab dtCallStart bis dtCallConnect (
    to
    zu group leg).
    NumberTransfer_OK_Time_CallStart_CallConnect_MaxINT
    Inbound, transfer to number
    Eingehend, Weiterleitung an Nummer, OK,
    max seconds from dtCallStart to
    Sekunden Höchstwert ab dtCallStart bis dtCallConnect (
    to
    zu group leg).
    NumberTransfer_OK_Time_CallConnect_CallEnd_TotalBIGINT
    Inbound, transfer to number
    Eingehend, Weiterleitung an Nummer, OK,
    total seconds from dtCallConnect to
    Sekunden gesamt ab dtCallConnect bis dtCallEnd (
    to
    zu group leg).
    NumberTransfer_OK_Time_CallConnect_CallEnd_MaxINT
    Inbound, transfer to number
    Eingehend, Weiterleitung an Nummer, OK,
    max seconds from dtCallConnect to
    Sekunden Höchstwert ab dtCallConnect bis dtCallEnd (
    to
    zu group leg).
    NumberTransfer_NoAnswer_CountINT
    Inbound, transfer to number, no answer
    Eingehend, Weiterleitung an Nummer, keine Antwort.
    NumberTransfer_Busy_CountINT
    Inbound, transfer to number, busy
    Eingehend, Weiterleitung an Nummer, besetzt.
    NumberTransfer_CallerHangup_CountINT
    Inbound, transfer to number, caller hangup during transfer
    Eingehend, Weiterleitung an Nummer, Auflegen durch Anrufer während der Weiterleitung.
    NumberTransfer_Reject_CountINT
    Inbound, transfer to number, rejected
    Eingehend, Weiterleitung an Nummer, abgelehnt.
    NumberTransfer_Failure_CountINT
    Inbound, transfer to number, failed
    Eingehend, Weiterleitung an Nummer, fehlgeschlagen.
    ClickToDial_CountINT
    Outbound
    Ausgehend, click to dial,
    total
    gesamt.
    ClickToDial_OK_CountINT
    Outbound
    Ausgehend, click to dial, OK.
    ClickToDial_OK_Time_CallStart_CallConnect_TotalINT
    Outbound
    Ausgehend, click to dial, OK,
    total seconds from dtCallStart to
    Sekunden gesamt ab dtCallStart bis dtCallConnect (
    to
    zu destination leg).
    ClickToDial_OK_Time_CallStart_CallConnect_MaxINT
    Outbound
    Ausgehend, click to dial, OK,
    max seconds from dtCallStart to
    Sekunden Höchstwert ab dtCallStart bis dtCallConnect (
    to
    zu destination leg).
    ClickToDial_OK_Time_CallConnect_CallEnd_TotalINT
    Outbound
    Ausgehend, click to dial, OK,
    total seconds from dtCallConnect to
    Sekunden gesamt ab dtCallConnect bis dtCallEnd (
    to
    zu destination leg).
    ClickToDial_OK_Time_CallConnect_CallEnd_MaxINT
    Outbound
    Ausgehend, click to dial, OK,
    max seconds from dtCallConnect to
    Sekunden Höchstwert ab dtCallConnect bis dtCallEnd (
    to
    zu destination leg).
    ClickToDial_NoAnswer_CountINT
    Outbound
    Ausgehend, click to dial,
    no answer
    keine Antwort.
    ClickToDial_NoAnswer_Time_CallStart_CallEnd_TotalINT
    Outbound
    Ausgehend, click to dial, OK,
    total seconds from dtCallStart to
    Sekunden gesamt ab dtCallStart bis dtCallEnd (
    to
    zu destination leg).
    ClickToDial_NoAnswer_Time_CallStart_CallEnd_MaxINT
    Outbound
    Ausgehend, click to dial, OK,
    max seconds from dtCallStart to
    Sekunden Höchstwert ab dtCallStart bis dtCallEnd (
    to
    zu destination leg).
    ClickToDial_Busy_CountINT
    Outbound
    Ausgehend, click to dial,
    busy
    besetzt.
    ClickToDial_AgentHangup_CountINT
    Outbound
    Ausgehend, click to dial,
    agent hangup before call connected
    Auflegen durch Agent vor Anrufsverbindung.
    ClickToDial_Reject_CountINT
    Outbound
    Ausgehend, click to dial,
    rejected
    abgelehnt.
    ClickToDial_Failure_CountINT
    Outbound
    Ausgehend, click to dial,
    failed
    fehlgeschlagen.
    Dialler_CountINT
    Outbound, from dialler campaign, total
    Ausgehend, aus Dialer Kampagne, gesamt.
    Dialler_OK_CountINT
    Outbound, from dialler campaign
    Ausgehend, aus Dialer Kampagne, OK.
    Dialler_OK_Time_CallStart_CallConnect_TotalINT
    Outbound, from dialler campaign
    Ausgehend, aus Dialer Kampagne, OK,
    total seconds from dtCallStart to
    Sekunden gesamt ab dtCallStart bis dtCallConnect (
    to
    zu destination leg).
    Dialler_OK_Time_CallStart_CallConnect_MaxINT
    Outbound, from dialler campaign
    Ausgehend, aus Dialer Kampagne, OK,
    max seconds from dtCallStart to
    Sekunden Höchstwert ab dtCallStart bis dtCallConnect (
    to
    zu destination leg).
    Dialler_OK_Time_CallConnect_CallEnd_TotalINT
    Outbound, from dialler campaign
    Ausgehend, aus Dialer Kampagne, OK,
    total seconds from dtCallConnect to
    Sekunden gesamt ab dtCallConnect bis dtCallEnd (
    to
    zu destination leg).
    Dialler_OK_Time_CallConnect_CallEnd_MaxINT
    Outbound, from dialler campaign
    Ausgehend, aus Dialer Kampagne, OK,
    max seconds from dtCallConnect to
    Sekunden Höchstwert ab dtCallConnect bis dtCallEnd (
    to
    zu destination leg).
    Dialler_NoAnswer_CountINT
    Outbound, from dialler campaign, no answer
    Ausgehend, aus Dialer Kampagne, keine Antwort.
    Dialler_NoAnswer_Time_CallStart_CallEnd_TotalINT
    Outbound, from dialler campaign
    Ausgehend, aus Dialer Kampagne, OK,
    total seconds from dtCallStart to
    Sekunden gesamt ab dtCallStart bis dtCallEnd (
    to
    zu destination leg).
    Dialler_NoAnswer_Time_CallStart_CallEnd_MaxINT
    Outbound, from dialler campaign
    Ausgehend, aus Dialer Kampagne, OK,
    max seconds from dtCallStart to
    Sekunden Höchstwert ab dtCallStart bis dtCallEnd (
    to
    zu destination leg).
    Dialler_Busy_CountINT
    Outbound, from dialler campaign, busy
    Ausgehend, aus Dialer Kampagne, besetzt.
    Dialler_AgentHangup_CountINT
    Outbound, from dialler campaign, agent hangup before call connected
    Ausgehend, aus Dialer Kampagne, Auflegen durch Agent vor Anrufsverbindung.
    Dialler_Reject_CountINT
    Outbound, from dialler campaign, rejected
    Ausgehend, aus Dialer Kampagne, abgelehnt.
    Dialler_Failure_CountINT
    Outbound, from dialler campaign, failed
    Ausgehend, aus Dialer Kampagne, fehlgeschlagen.