Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Fields

Outbound

Inbound: ACD_* Fields

Partitions all records using the field AcdGroupEntryReasonsID from AcdStatisticsPartB.

Sv translation
languageen

Status
colourBlue
titleAvailable from release 3.33

Background

Background

JTELStats2 contains two more compression routines:

CompressedACDB15 and CompressedACDBDay tables are provided which compress the statistics based on an ACD Groups view of the calls.

This means that for example, if a call is transferred from one group to another, it will be counted twice in the report, once for each ACD group.

This type of counting is useful, for example, when using some personell planning tools which require a group / queue based view of the data for predicting the number of required agents.

Parameters

Data is aggregated according to the settings of the parameters:

Parameter

Default Value

Purpose

Portal.ACD.Statistics.JTELStats2.Compress.CompressedACDB.SecondsToWait

7200

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

Portal.ACD.Statistics.JTELStats2.Compress.CompressedACDB.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.CompressedACDB.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 CompressedACDB tables themselves is NOT supported.
Portal.ACD.Statistics.JTELStats2.Compress.CompressedACDB.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.CompressedACDB.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.CompressedACDB.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.
Portal.ACD.Statistics.JTELStats2.CompressedACDB15.MaxAgeDays180

The maximum age in days of the entries in the CompressedACDB15 table.

Portal.ACD.Statistics.JTELStats2.CompressedACDBDay.MaxAgeDays900

The maximum age in days of the entries in the CompressedACDBDay table.

Query

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

Translations Ignore


Code Block
titleCompressedACDB Query
SELECT      (Various Aggregations) 
FROM		JTELStats.AcdStatisticsPartB acdb
LEFT JOIN	JTELStats.StatisticsPartA a
	ON		acdb.StatisticsPartAID = a.ID
LEFT JOIN	JTELStats.StatisticsPartB b
	ON		acdb.ID = b.AcdStatisticsPartBID
LEFT JOIN	JTELWeb.AcdGroups g
	ON		b.AcdGroupsID = g.ID 
WHERE		( a.ClientsID = _ClientsID )
			AND
			( acdb.dtGroupStart BETWEEN _Timeslice_Begin AND Timeslice_End_ )
GROUP BY	acdb.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

0

Inbound

1

acdb.AcdGroupEntryReasonsID

Field

NULL

Direct

1

OverflowIn_TransferIn

2

OverflowIn_GroupRules

3

OverflowIn_IVR

Inbound: Queue


Partitions all records using the field AcdGroupEndReasonsID from AcdStatisticsPartB.

Abandoned_* 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

acdb.AcdGroupEndReasonsID IN ( 1, 2, 3, 4 ) )


NotQueued_Hangup field

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
( StatisticsPartAacdb.dtCallConnectAcdGroupEndReasonsID IS NOT NULL ) AND ( AcdStatisticsPartB.dtAgentConnect IS NOT NULL )

Inbound: Queue_NotServiced_* Fields

IN ( 200, 205, 207 ) )


NotQueued_Rule_* 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
( StatisticsPartAacdb.dtCallConnectAcdGroupEndReasonsID ISIN NOT( NULL100, )101, AND102, ( AcdStatisticsPartB.dtAgentConnect IS NULL )105, 107 ) )


Queued_Hungup field

The condition used isThese calls are further partitioned into Abandoned and Reject as follows:

Translations Ignore


Code Block
a( acdb.bCallerHangupAcdGroupEndReasonsID = 0  --> System hangup (Reject)
a.bCallerHangup <> 0  --> Caller hangup (Abandoned)
Inbound: AgentCalls_*, GroupTransfer_*, AgentTransfer_*, NumberTransfer
206 )


Queued_Rule_* Fields

Only records which meet the following condition are consideredThe condition used is:

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
acdb.AcdGroupEndReasonsID IN ( 106, 108, 109 ) )


AgentCalls_*

The condition used is:

Translations Ignore


Code Block

StatisticsPartB.StatisticsPartBOrigin IS NULL

AgentCalls_

acdb.AcdGroupEndReasonsID IN ( 5, 103, 104, 203, 204 )



Tables

CompressedACDB15

This table contains compressed statistics for 15 minute intervals.

CompressedACDBDay

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.
ACD_CountINTInbound calls to ACD, total.
ACD_Direct

INT

Calls routed directly to the acd group and this is the first acd group the call has been processed in
ACD_OverflowIn_TransferInINTCalls routed to the ACD group due to an agent making a call transfer from one group to another group (blind or assisted)
ACD_OverflowIn_GroupRulesINTCalls routed to the ACD group by a group rule overflowing from one group to another
ACD_OverflowIn_IVRINTCalls routed to the ACD group by the IVR and this was not the first group the call was processed in (so the call was in the ACD, left to go back to the IVR and then was routed to another ACD group by the IVR)
GroupStart_LoggedInForCallsAgentCountExceptPostcallINTThe number of agents logged into the acd group for calls at the time the call entered the group, not including agents who were in automatic post call.
GroupStart_LoggedInForCallsAgentCountINTThe number of agents logged into the acd group for calls at the time the call entered the group.
GroupStart_PresentAgentCountINTThe number of agents logged into the acd group who were in a status with the “present” flag in the ACD agent status when the call entered the ACD group.
GroupStart_LoggedInToAcdAgentCountINTThe number of agents logged into the acd group (in any status) when the call entered the ACD group.
GroupStart_LoggedInRequiredSkillAgentCountINTThe number of agents logged into the acd group (in any status) when the call entered the ACD group who had the required skills associated with the call.
GroupStart_Client_LoggedInAgentCountINTThe number of agents logged into the client account in total (over all ACD groups), when the call entered the ACD group.
Abandoned_BeforeQueue_CountINTCalls that are abandoned before queue.
Abandoned_BeforeQueue_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are abandoned before queue, total seconds from dtGroupStart to dtGroupEnd.
Abandoned_BeforeQueue_Time_GroupStart_GroupEnd_MaxINTCalls that are abandoned before queue, max seconds from dtGroupStart to dtGroupEnd.
Abandoned_Queue_CountINTCalls that are abandoned in queue.
Abandoned_Queue_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are abandoned in queue, total seconds from dtGroupStart to dtGroupEnd.
Abandoned_Queue_Time_GroupStart_GroupEnd_MaxINTCalls that are abandoned in queue, max seconds from dtGroupStart to dtGroupEnd.
Abandoned_Queue_5Sec_CountINTCalls that are abandoned in queue in less than 5 seconds.
Abandoned_Queue_5Sec_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are abandoned in queue in less than 5 seconds,  total seconds from dtGroupStart to dtGroupEnd.
Abandoned_Queue_5Sec_Time_GroupStart_GroupEnd_MaxINTCalls that are abandoned in queue in less than 5 seconds,  max seconds from dtGroupStart to dtGroupEnd.
Abandoned_SLA_CountINTCalls that are abandoned within service level.
NotQueued_Hangup_Count

INT

Calls that are not queued and hangup by the system.
NotQueued_Hangup_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are not queued and hangup by the system, total seconds from dtGroupStart to dtGroupEnd.
NotQueued_Hangup_Time_GroupStart_GroupEnd_MaxINTCalls that are not queued and hangup by the system, max seconds from dtGroupStart to dtGroupEnd.
NotQueued_Rule_CountINTCalls that are not queued by a Group rule.
NotQueued_Rule_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are not queued by a Group rule, total seconds from dtGroupStart to dtGroupEnd.
NotQueued_Rule_Time_GroupStart_GroupEnd_MaxINTCalls that are not queued by a Group rule, max seconds from dtGroupStart to dtGroupEnd.
NotQueued_Rule_Hangup_CountINTCalls that are not queued by a Group rule and the rule is Hangup.
NotQueued_Rule_Hangup_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are not queued by a Group rule and the rule is Hangup, total seconds from dtGroupStart to dtGroupEnd.
NotQueued_Rule_Hangup_Time_GroupStart_GroupEnd_MaxINTCalls that are not queued by a Group rule and the rule is Hangup, max seconds from dtGroupStart to dtGroupEnd.
NotQueued_Rule_Overflow_CountINTCalls that are not queued by a Group rule and the rule is Overflow to group.
NotQueued_Rule_Overflow_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are not queued by a Group rule and the rule is Overflow to group, total seconds from dtGroupStart to dtGroupEnd.
NotQueued_Rule_Overflow_Time_GroupStart_GroupEnd_MaxINTCalls that are not queued by a Group rule and the rule is Overflow to group, max seconds from dtGroupStart to dtGroupEnd.
NotQueued_Rule_MediaEvent_CountINTCalls that are not queued by a Group rule and the rule is request/create Media event (Voicemail, Callback, Fax).
NotQueued_Rule_MediaEvent_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are not queued by a Group rule and the rule is request/create Media event, total seconds from dtGroupStart to dtGroupEnd.
NotQueued_Rule_MediaEvent_Time_GroupStart_GroupEnd_MaxINTCalls that are not queued by a Group rule and the rule is request/create Media event, max seconds from dtGroupStart to dtGroupEnd.
NotQueued_Rule_ExDestination_CountINTCalls that are not queued by a Group rule and the rule is External destination.
NotQueued_Rule_ExDestination_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are not queued by a Group rule and the rule is External destination, total seconds from dtGroupStart to dtGroupEnd.
NotQueued_Rule_ExDestination_Time_GroupStart_GroupEnd_MaxINTCalls that are not queued by a Group rule and the rule is External destination, max seconds from dtGroupStart to dtGroupEnd.
Queued_Hangup_CountINTCalls that are queued and hangup by the system.
Queued_Hangup_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are queued and hangup by the system, total seconds from dtGroupStart to dtGroupEnd.
Queued_Hangup_Time_GroupStart_GroupEnd_MaxINTCalls that are queued and hangup by the system, max seconds from dtGroupStart to dtGroupEnd.
Queued_Hangup_Time_QueueStart_GroupEnd_TotalBIGINTCalls that are queued and hangup by the system, total seconds from dtqueueStart to dtGroupEnd.
Queued_Hangup_Time_QueueStart_GroupEnd_MaxINTCalls that are queued and hangup by the system, max seconds from dtQueueStart to dtGroupEnd.
Queued_Rule_CountINTCalls that are queued by a Group rule.
Queued_Rule_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are queued by a Group rule, total seconds from dtGroupStart to dtGroupEnd.
Queued_Rule_Time_GroupStart_GroupEnd_MaxINTCalls that are queued by a Group rule, max seconds from dtGroupStart to dtGroupEnd.
Queued_Rule_Hangup_CountINTCalls that are queued by a Group rule and the rule is Hangup.
Queued_Rule_Hangup_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are queued by a Group rule and the rule is Hangup, total seconds from dtGroupStart to dtGroupEnd.
Queued_Rule_Hangup_Time_GroupStart_GroupEnd_MaxINTCalls that are queued by a Group rule and the rule is Hangup, max seconds from dtGroupStart to dtGroupEnd.
Queued_Rule_Overflow_CountINTCalls that are queued by a Group rule and the rule is Overflow to group.
Queued_Rule_Overflow_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are queued by a Group rule and the rule is Overflow to group, total seconds from dtGroupStart to dtGroupEnd.
Queued_Rule_Overflow_Time_GroupStart_GroupEnd_MaxINTCalls that are queued by a Group rule and the rule is Overflow to group, max seconds from dtGroupStart to dtGroupEnd.
Queued_Rule_MediaEvent_CountINTCalls that are queued by a Group rule and the rule is request/create Media event (Voicemail, Callback, Fax).
Queued_Rule_MediaEvent_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are queued by a Group rule and the rule is request/create Media event (Voicemail, Callback, Fax), total seconds from dtGroupStart to dtGroupEnd.
Queued_Rule_MediaEvent_Time_GroupStart_GroupEnd_MaxINTCalls that are queued by a Group rule and the rule is request/create Media event (Voicemail, Callback, Fax), max seconds from dtGroupStart to dtGroupEnd.
Queued_Rule_ExDestination_CountINTCalls that are queued by a Group rule and the rule is External destination.
Queued_Rule_ExDestination_Time_GroupStart_GroupEnd_TotalBIGINTCalls that are queued by a Group rule and the rule is External destination, total seconds from dtGroupStart to dtGroupEnd.
Queued_Rule_ExDestination_Time_GroupStart_GroupEnd_MaxINTCalls that are queued by a Group rule and the rule is External destination, max seconds from dtGroupStart to dtGroupEnd.
AgentCall_CountINTTotal calls to agent.
AgentCall_SLA_CountINTTotal calls to agent within the Service level.
AgentCall_Time_GroupStart_GroupEnd_TotalBIGINTTotal calls to agent, total seconds from dtGroupStart to dtGroupEnd.
AgentCall_Time_GroupStart_GroupEnd_MaxINTTotal calls to agent, max seconds from dtGroupStart to dtGroupEnd.
AgentCall_Time_GroupStart_AgentConnect_TotalBIGINTTotal calls to agent, total seconds from dtGroupStart to dtAgentConnect.
AgentCall_Time_GroupStart_AgentConnect_MaxINTTotal calls to agent, max seconds from dtGroupStart to dtAgentConnect.
AgentCall_Time_QueueStart_AgentConnect_TotalBIGINTTotal calls to agent, total seconds from dQueueStart to dtAgentConnect.
AgentCall_Time_QueueStart_AgentConnect_MaxINTTotal calls to agent, max seconds from dtQueueStart to dtAgentConnect.
AgentCall_Time_AgentConnect_GroupEnd_TotalBIGINTTotal calls to agent, total seconds from dtAgentConnect to dtGroupEnd.
AgentCall_Time_AgentConnect_GroupEnd_MaxINTTotal calls to agent, max seconds from dtAgentConnect to dtGroupEnd.
AgentCall_Time_CallStart_CallEnd_TotalBIGINTTotal calls to agent, total seconds from dtCallStart to dtCallEnd.
AgentCall_Time_CallStart_CallEnd_MaxINTTotal calls to agent, max seconds from dtCallStart to dtCallEnd.
AgentCall_PostCall_Time_TotalBIGINTInbound calls to agents, agent answered, post call work required, total seconds
AgentCall_PostCall_Time_MaxINTInbound calls to agents, agent answered, post call work required, max seconds




Sv translation
languagede

Hintergrund

Es stehen die Tabellen „CompressedACDB15“ und „CompressedACDBDay“ zur Verfügung, die die Statistiken basierend auf einer ACD-Gruppenansicht der Anrufe komprimieren.

Das heißt, wenn beispielsweise ein Anruf von einer Gruppe zu einer anderen weitergeleitet wird, wird er im Bericht zweimal gezählt, einmal für jede ACD-Gruppe.

Diese Art der Zählung ist beispielsweise nützlich, wenn einige Personalplanungstools verwendet werden, die eine gruppen-/warteschlangenbasierte Ansicht der Daten erfordern, um die Anzahl der benötigten Agenten vorherzusagen.

Parameter

Die Daten werden entsprechend den Einstellungen der Parameter aggregiert:

Parameter

Standard-
wert

Zweck

Portal.ACD.Statistics.JTELStats2.Compress.CompressedACDB.SecondsToWait

7200

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

Portal.ACD.Statistics.JTELStats2.Compress.CompressedACDB.NextTimeSlice

-

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.CompressedACDB.CustomCompress
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.CompressedACDB.SuppressErrors0Auf 1 gesetzt, 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.CompressedACDB.EndTime02:50Die 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.CompressedACDB.StartTime22:00Die 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, CompressedACDB15 (15-Minuten-Zeitabschnitte) und CompressedACDBDay (Tageskomprimierung), die gemäß der folgenden Abfrage aggregiert werden:

Translations Ignore


Code Block
titleCompressedACDB Query
SELECT      (Various Aggregations) 
FROM		JTELStats.AcdStatisticsPartB acdb
LEFT JOIN	JTELStats.StatisticsPartA a
	ON		acdb.StatisticsPartAID = a.ID
LEFT JOIN	JTELStats.StatisticsPartB b
	ON		acdb.ID = b.AcdStatisticsPartBID
LEFT JOIN	JTELWeb.AcdGroups g
	ON		b.AcdGroupsID = g.ID
WHERE		( a.ClientsID = _ClientsID )
			AND
			( acdb.dtGroupStart BETWEEN _Timeslice_Begin AND Timeslice_End_ )
GROUP BY	acdb.ID;



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.

Eingehende Felder

Partitions all records using the field AcdGroupEntryReasonsID from AcdStatisticsPartB.

acdb.AcdGroupEntryReasonsID

Field

NULL

Direct

1

OverflowIn_TransferIn

2

OverflowIn_GroupRules

3

OverflowIn_IVR


Partitioniert alle Datensätze mithilfe des Felds AcdGroupEndReasonsID von AcdStatisticsPartB.

Abandoned_* Fields

The additional condition used is:

Translations Ignore


Code Block
( acdb.AcdGroupEndReasonsID IN ( 1, 2, 3, 4 ) )


NotQueued_Hangup field

Die verwendete Bedingung ist:

Translations Ignore


Code Block
( acdb.AcdGroupEndReasonsID IN ( 200, 205, 207 ) )


NotQueued_Rule_* Fields

Die verwendete Bedingung ist:

Translations Ignore


Code Block
( acdb.AcdGroupEndReasonsID IN ( 100, 101, 102, 105, 107 ) )


Queued_Hungup field

Die verwendete Bedingung ist:

Translations Ignore


Code Block
( acdb.AcdGroupEndReasonsID = 206 )


Queued_Rule_* Fields

Die verwendete Bedingung ist:

Translations Ignore


Code Block
( acdb.AcdGroupEndReasonsID IN ( 106, 108, 109 ) )


AgentCalls_*

Die verwendete Bedingung ist:

Translations Ignore


Code Block
acdb.AcdGroupEndReasonsID IN ( 5, 103, 104, 203, 204 )


Tabellen

CompressedACDB15

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

CompressedACDBDay

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
IDINTEine 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 des Mandanten aus der Clients Tabelle
ServiceNumbersIDINTID der Servicenummer aus der ServiceNumbers Tabelle.
DynamicPriorityGroupsIDINTID der Dynamic Priority Group aus der DynamicPriorityGroups Tabelle, oder 0, wenn keine Dynamic Priority Group zugewiesen wurde.
RoutingApplicationsIDINTID der Routingapplikation aus der RoutingApplications Tabelle, oder 0, wenn die Anwendung nicht verfügbar ist.
AcdGroupsIDINTID der ACD-Gruppe aus der Tabelle AcdGroups, oder 0, wenn keine ACD-Gruppe verfügbar ist.
DiallerCampaignsIDINTID der Dialer Kampagne aus der Tabelle DiallerCampaigns, oder 0, wenn keine Dialer Kampagne verfügbar ist.
dtIntervalStartDATETIMEDatum und Uhrzeit des Beginns des Intervalls.
ServiceNumbersRootNumberVARCHAR(32)Das RootNumber Feld der Servicenummer, wie bei der Erstellung der compressed statistics konfiguriert.
ServiceNumbersNameVARCHAR(64)Das Name-Feld der Servicenummer, wie bei der Erstellung der compressed statistics konfiguriert.
ServiceNumbersName2VARCHAR(64)Das Name2-Feld der Servicenummer, wie bei der Erstellung der compressed statistics konfiguriert.
DynamicPriorityGroupsNameVARCHAR(64)Das Name-Feld aus der Tabelle DynamicPriorityGroups, wie bei der Erstellung der compressed statistics konfiguriert.
AcdGroupsNameVARCHAR(64)Das Name-Feld aus der AcdGroups Tabelle, wie bei der Erstellung der compressed statistics konfiguriert.
DiallerCampaignsNameVARCHAR(64)Das Name-Feld aus der Dialer Kampagne Tabelle, wie bei der Erstellung der compressed statistics konfiguriert.
ServiceNumber_CountINTEingehende Anrufe zu Service Nummer, gesamt.
ServiceNumber_Abandoned_CountINTEingehende Anrufe zu Service Nummer, verlassen (Auflegen durch Anrufer).
ServiceNumber_Abandoned_Time_CallStart_CallEnd_Total BIGINTEingehende Anrufe zu Service Nummer, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtCallStart bis dtCallEnd.
ServiceNumber_
Translations Ignore

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

OR
(
   ( b.AcdGroupsID = acdb.AcdGroupsID )
   AND
   ( acdb.AcdGroupEntryReasonsID = 1 )
)

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

CompressedACDB15

This table contains compressed statistics for 15 minute intervals.

CompressedACDBDay

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.

Queue_NotServiced_Queue_NotServiced_Abandoned_Time_CallConnectQueue_NotServiced_Abandoned_Time_CallConnectQueue_NotServiced_Abandoned_Time_GroupStartQueue_NotServiced_Abandoned_Time_GroupStartQueue_NotServiced_Abandoned_Time_QueueStartQueue_NotServiced_Abandoned_Time_QueueStartQueue_NotServiced_Reject_Time_CallStart
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.
ACD_CountINTInbound calls to ACD, total.
ACD_Direct

INT

Calls routed directly to the acd group and this is the first acd group the call has been processed in
ACD_OverflowIn_TransferInINTCalls routed to the ACD group due to an agent making a call transfer from one group to another group (blind or assisted)
ACD_OverflowIn_GroupRulesINTCalls routed to the ACD group by a group rule overflowing from one group to another
ACD_OverflowIn_IVRINTCalls routed to the ACD group by the IVR and this was not the first group the call was processed in (so the call was in the ACD, left to go back to the IVR and then was routed to another ACD group by the IVR)
GroupStart_LoggedInForCallsAgentCountExceptPostcallINTThe number of agents logged into the acd group for calls at the time the call entered the group, not including agents who were in automatic post call.
GroupStart_LoggedInForCallsAgentCountINTThe number of agents logged into the acd group for calls at the time the call entered the group.
GroupStart_PresentAgentCountINTThe number of agents logged into the acd group who were in a status with the “present” flag in the ACD agent status when the call entered the ACD group.
GroupStart_LoggedInToAcdAgentCountINTThe number of agents logged into the acd group (in any status) when the call entered the ACD group.
GroupStart_LoggedInRequiredSkillAgentCountINTThe number of agents logged into the acd group (in any status) when the call entered the ACD group who had the required skills associated with the call.
GroupStart_Client_LoggedInAgentCountINTThe number of agents logged into the client account in total (over all ACD groups), when the call entered the ACD group.
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.
Abandoned_Time_CallStart_CallEnd_MaxINTInbound calls to ACD, entered queue, not serviced by agent, caller hangup, max seconds from dtCallStart to dtCallEnd.Eingehende Anrufe zu Service Nummer, verlassen (Auflegen durch Anrufer), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
ServiceNumber_Busy_CountINTEingehende Anrufe zu Service Nummer, besetzt (von System).
ServiceNumber_Busy_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe zu Service Nummer, besetzt (von System), Sekunden gesamt ab dtCallStart bis dtCallEnd.
ServiceNumber_Busy_Time_CallStartInbound calls to ACD, entered queue, not serviced by agent, caller hangup, total seconds from dtCallConnect to dtCallEnd._CallEnd_MaxINTInbound calls to ACD, entered queue, not serviced by agent, caller hangup, max seconds from dtCallConnect to dtCallEnd.Eingehende Anrufe zu Service Nummer, besetzt (von System), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
ServiceNumber_Reject_CountINTEingehende Anrufe zu Service Nummer, abgelehnt (durch system).
ServiceNumber_Reject_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe zu Service Nummer, abgelehnt (durch system), Sekunden gesamt ab dtCallStart bis dtCallEnd.
ServiceNumber_Reject_Time_CallStartInbound calls to ACD, entered queue, not serviced by agent, caller hangup, total seconds from dtGroupStart to dtCallEnd._CallEnd_MaxINTInbound calls to ACD, entered queue, not serviced by agent, caller hangup, max seconds from dtGroupStart to dtCallEnd.Eingehende Anrufe zu Service Nummer, abgelehnt (durch system), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
ServiceNumber_Offhook_CountINTEingehende Anrufe zu Service Nummer, System offhook.
ServiceNumber_Offhook_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe zu Service Nummer, System offhook, Sekunden gesamt ab dtCallStart bis dtCallEnd.
ServiceNumber_Offhook_Time_CallStartInbound calls to ACD, entered queue, not serviced by agent, caller hangup, total seconds from dtQueueStart to dtCallEnd._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.
Eingehende Anrufe zu Service Nummer, System offhook, Sekunden Höchstwert ab dtCallStart bis dtCallEnd.
ServiceNumber_Offhook_Time_CallConnect_CallEnd_TotalBIGINTInbound calls to ACD, entered queue, not serviced by agent, system hangup, total seconds from dtCallStart to dtCallEnd.Eingehende Anrufe zu Service Nummer, System offhook, Sekunden gesamt ab dtCallConnect bis dtCallEnd.
ServiceNumber_Offhook_Time_CallConnectQueue_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_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.
Sv translation
languagede
Eingehende Anrufe zu Service Nummer, System offhook, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd.
ACD_CountINTEingehende Anrufe an ACD, gesamt.
ACD_OverflowIn_TransferInINTAnrufe, die an die ACD-Gruppe weitergeleitet werden, weil ein Agent einen Anruf von einer Gruppe zu einer anderen Gruppe weiterleitet (blind oder unterstützt)
ACD_OverflowIn_GroupRulesINTAnrufe, die durch eine Gruppenregel an die ACD-Gruppe weitergeleitet werden, laufen von einer Gruppe zur anderen über
ACD_OverflowIn_IVRINTAnrufe wurden vom IVR an die ACD-Gruppe weitergeleitet und dies war nicht die erste Gruppe, in der der Anruf verarbeitet wurde (der Anruf befand sich also im ACD, ging zurück zum IVR und wurde dann vom IVR an eine andere ACD-Gruppe weitergeleitet).
GroupStart_LoggedInForCallsAgentCountExceptPostcallINTDie Anzahl der Agenten, die zum Zeitpunkt des Einganges des Anrufs in der Gruppe für Anrufe in der ACD-Gruppe angemeldet waren, ohne Agenten, die sich im automatischen Post-Call-Modus befanden.
GroupStart_LoggedInForCallsAgentCountINTDie Anzahl der Agenten, die zum Zeitpunkt des Einganges des Anrufs in der Gruppe für Anrufe in der ACD-Gruppe angemeldet waren.
GroupStart_PresentAgentCountINTDie Anzahl der in der ACD-Gruppe angemeldeten Agenten, die sich in einem Status mit der Markierung „Anwesend“ im ACD-Agentenstatus befanden, als der Anruf in die ACD-Gruppe einging.
GroupStart_LoggedInToAcdAgentCountINTDie Anzahl der Agenten, die in der ACD-Gruppe angemeldet waren (in jedem Status), als der Anruf in die ACD-Gruppe einging.
GroupStart_LoggedInRequiredSkillAgentCountINTDie Anzahl der Agenten, die in der ACD-Gruppe angemeldet waren (in jedem Status), als der Anruf in der ACD-Gruppe einging und die über die mit dem Anruf verbundenen erforderlichen Fähigkeiten verfügten.
GroupStart_Client_LoggedInAgentCountINTDie Gesamtzahl der beim Kundenkonto angemeldeten Agenten (über alle ACD-Gruppen), als der Anruf in die ACD-Gruppe einging.
Abandoned_BeforeQueue_CountINTAnrufe, die vor der Warteschlange abgebrochen werden.
Abandoned_BeforeQueue_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die vor der Warteschlange abgebrochen werden, Gesamtsekunden von dtGroupStart bis dtGroupEnd.
Abandoned_BeforeQueue_Time_GroupStart_GroupEnd_MaxINTAnrufe, die vor der Warteschlange abgebrochen werden, maximale Sekunden von dtGroupStart bis dtGroupEnd.
Abandoned_Queue_CountINTAnrufe, die in der Warteschlange abgebrochen werden.
Abandoned_Queue_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die in der Warteschlange abgebrochen werden, Gesamtsekunden von dtGroupStart bis dtGroupEnd.
Abandoned_Queue_Time_GroupStart_GroupEnd_MaxINTAnrufe, die in der Warteschlange abgebrochen werden, maximal Sekunden von dtGroupStart bis dtGroupEnd.
Abandoned_Queue_5Sec_CountINTAnrufe, die in weniger als 5 Sekunden in der Warteschlange abgebrochen werden.
Abandoned_Queue_5Sec_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die in weniger als 5 Sekunden in der Warteschlange abgebrochen werden,  Gesamtsekunden von dtGroupStart bis dtGroupEnd.
Abandoned_Queue_5Sec_Time_GroupStart_GroupEnd_MaxINTAnrufe, die in weniger als 5 Sekunden in der Warteschlange abgebrochen werden, maximal Sekunden von dtGroupStart bis dtGroupEnd.
Abandoned_SLA_CountINTAnrufe, die innerhalb des Servicelevels abgebrochen werden.
NotQueued_Hangup_Count

INT

Anrufe, die nicht in die Warteschlange gestellt werden und vom System aufgelegt werden.
NotQueued_Hangup_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die nicht in die Warteschlange gestellt werden und vom System aufgelegt werden, Gesamtsekunden von dtGroupStart bis dtGroupEnd.
NotQueued_Hangup_Time_GroupStart_GroupEnd_MaxINTAnrufe, die nicht in die Warteschlange gestellt werden und vom System aufgelegt werden, maximal Sekunden von dtGroupStart bis dtGroupEnd.
NotQueued_Rule_CountINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden.
NotQueued_Rule_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden, Gesamtsekunden von dtGroupStart bis dtGroupEnd.
NotQueued_Rule_Time_GroupStart_GroupEnd_MaxINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden, maximal Sekunden von dtGroupStart bis dtGroupEnd.
NotQueued_Rule_Hangup_CountINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden und bei der es sich um die Regel „Auflegen“ handelt.
NotQueued_Rule_Hangup_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Auflegen“ lautet, Gesamtsekunden von „dtGroupStart“ bis „dtGroupEnd“.
NotQueued_Rule_Hangup_Time_GroupStart_GroupEnd_MaxINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Auflegen“ lautet, maximal Sekunden von „dtGroupStart“ bis „dtGroupEnd“.
NotQueued_Rule_Overflow_CountINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Überlauf zur Gruppe“ lautet.
NotQueued_Rule_Overflow_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Überlauf zur Gruppe“ ist, Gesamtsekunden von dtGroupStart bis dtGroupEnd.
NotQueued_Rule_Overflow_Time_GroupStart_GroupEnd_MaxINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Überlauf zur Gruppe“ ist, maximale Sekunden von dtGroupStart bis dtGroupEnd.
NotQueued_Rule_MediaEvent_CountINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden und bei der es sich um die Regel „Medienereignis anfordern/erstellen“ (Voicemail, Rückruf, Fax) handelt.
NotQueued_Rule_MediaEvent_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Medienereignis anfordern/erstellen“ lautet, Gesamtsekunden von „dtGroupStart“ bis „dtGroupEnd“.
NotQueued_Rule_MediaEvent_Time_GroupStart_GroupEnd_MaxINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden und bei der es sich um die Regel „Medienereignis anfordern/erstellen“ handelt, maximal Sekunden von „dtGroupStart“ bis „dtGroupEnd“.
NotQueued_Rule_ExDestination_CountINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Externes Ziel“ ist.
NotQueued_Rule_ExDestination_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Externes Ziel“ ist, Gesamtsekunden von „dtGroupStart“ bis „dtGroupEnd“.
NotQueued_Rule_ExDestination_Time_GroupStart_GroupEnd_MaxINTAnrufe, die nicht durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Externes Ziel“ ist, maximal Sekunden von „dtGroupStart“ bis „dtGroupEnd“.
Queued_Hangup_CountINTAnrufe, die in der Warteschlange stehen und vom System aufgelegt werden.
Queued_Hangup_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die sich in der Warteschlange befinden und vom System aufgelegt werden, Gesamtsekunden von dtGroupStart bis dtGroupEnd.
Queued_Hangup_Time_GroupStart_GroupEnd_MaxINTAnrufe, die in der Warteschlange stehen und vom System aufgelegt werden, maximal Sekunden von dtGroupStart bis dtGroupEnd.
Queued_Hangup_Time_QueueStart_GroupEnd_TotalBIGINTAnrufe, die vom System in die Warteschlange gestellt und aufgelegt werden, Gesamtsekunden von dtqueueStart bis dtGroupEnd.
Queued_Hangup_Time_QueueStart_GroupEnd_MaxINTAnrufe, die vom System in die Warteschlange gestellt und aufgelegt werden, maximal Sekunden von dtQueueStart bis dtGroupEnd.
Queued_Rule_CountINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden.
Queued_Rule_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden, Gesamtsekunden von dtGroupStart bis dtGroupEnd.
Queued_Rule_Time_GroupStart_GroupEnd_MaxINTAnrufe, die aufgrund einer Gruppenregel in die Warteschlange gestellt werden, maximal Sekunden von dtGroupStart bis dtGroupEnd.
Queued_Rule_Hangup_CountINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden und bei der es sich um die Regel „Auflegen“ handelt.
Queued_Rule_Hangup_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Auflegen“ lautet, Gesamtsekunden von „dtGroupStart“ bis „dtGroupEnd“.
Queued_Rule_Hangup_Time_GroupStart_GroupEnd_MaxINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Auflegen“ lautet, maximal Sekunden von „dtGroupStart“ bis „dtGroupEnd“.
Queued_Rule_Overflow_CountINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Überlauf zur Gruppe“ lautet.
Queued_Rule_Overflow_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Überlauf zur Gruppe“ lautet, Gesamtsekunden von „dtGroupStart“ bis „dtGroupEnd“.
Queued_Rule_Overflow_Time_GroupStart_GroupEnd_MaxINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Überlauf zur Gruppe“ ist, maximale Sekunden von dtGroupStart bis dtGroupEnd.
Queued_Rule_MediaEvent_CountINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden und bei der es sich um die Regel „Medienereignis anfordern/erstellen“ (Voicemail, Rückruf, Fax) handelt.
Queued_Rule_MediaEvent_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Medienereignis anfordern/erstellen“ (Voicemail, Rückruf, Fax) lautet, Gesamtsekunden von „dtGroupStart“ bis „dtGroupEnd“.
Queued_Rule_MediaEvent_Time_GroupStart_GroupEnd_MaxINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel Medienereignis anfordern/erstellen (Voicemail, Rückruf, Fax) lautet, maximal Sekunden von dtGroupStart bis dtGroupEnd.
Queued_Rule_ExDestination_CountINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Externes Ziel“ ist.
Queued_Rule_ExDestination_Time_GroupStart_GroupEnd_TotalBIGINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Externes Ziel“ ist, Gesamtsekunden von „dtGroupStart“ bis „dtGroupEnd“.
Queued_Rule_ExDestination_Time_GroupStart_GroupEnd_MaxINTAnrufe, die durch eine Gruppenregel in die Warteschlange gestellt werden und die Regel „Externes Ziel“ ist, maximal Sekunden von „dtGroupStart“ bis „dtGroupEnd“.
AgentCall_CountINTGesamtzahl der Anrufe beim Agenten.
AgentCall_SLA_CountINTGesamtanzahl der Anrufe an den Agenten innerhalb der Serviceebene.
AgentCall_Time_GroupStart_GroupEnd_TotalBIGINTGesamtzahl der Anrufe an einen Agenten, Gesamtsekunden von dtGroupStart bis dtGroupEnd.
AgentCall_Time_GroupStart_GroupEnd_MaxINTGesamtzahl der Anrufe an den Agenten, maximale Sekunden von dtGroupStart bis dtGroupEnd.
AgentCall_Time_GroupStart_AgentConnect_TotalBIGINTGesamtzahl der Anrufe an einen Agenten, Gesamtsekunden von dtGroupStart bis dtAgentConnect.
AgentCall_Time_GroupStart_AgentConnect_MaxINTGesamtzahl der Anrufe an den Agenten, maximale Sekunden von dtGroupStart bis dtAgentConnect.
AgentCall_Time_QueueStart_AgentConnect_TotalBIGINTGesamtzahl der Anrufe an den Agenten, Gesamtsekunden von dQueueStart bis dtAgentConnect.
AgentCall_Time_QueueStart_AgentConnect_MaxINTGesamtzahl der Anrufe an den Agenten, maximale Sekunden von dtQueueStart bis dtAgentConnect.
AgentCall_Time_AgentConnect_GroupEnd_TotalBIGINTGesamtzahl der Anrufe an den Agenten, Gesamtsekunden von dtAgentConnect bis dtGroupEnd.
AgentCall_Time_AgentConnect_GroupEnd_MaxINTGesamtzahl der Anrufe an den Agenten, maximale Sekunden von dtAgentConnect bis dtGroupEnd.
AgentCall_Time_CallStart_CallEnd_TotalBIGINTGesamtzahl der Anrufe an einen Agenten, Gesamtsekunden von dtCallStart bis dtCallEnd.
AgentCall_Time_CallStart_CallEnd_MaxINTGesamtzahl der Anrufe an einen Agenten, maximale Sekunden von dtCallStart bis dtCallEnd.
AgentCall_PostCall_Time_TotalBIGINTEingehende Anrufe an Agenten, Agent beantwortet, Nacharbeit erforderlich, Gesamtsekunden
AgentCall_PostCall_Time_MaxINTEingehende Anrufe an Agenten, Agent beantwortet, Nacharbeit erforderlich, max. Sekunden



Eingehend: ServiceNumber_* Felder

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

Eingehend: ACD_* 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:

Sv translation
languagefr

Fond

Les tables CompressedACDB15 et CompressedACDBDay sont fournies pour compresser les statistiques en fonction d'une vue des groupes ACD des appels.

Cela signifie que par exemple, si un appel est transféré d'un groupe à un autre, il sera compté deux fois dans le rapport, une fois pour chaque groupe ACD.

Ce type de comptage est utile, par exemple, lors de l'utilisation de certains outils de planification du personnel qui nécessitent une vue des données basée sur un groupe/une file d'attente pour prédire le nombre d'agents requis.

Paramètres

Les données sont agrégées en fonction du réglage des paramètres :

Paramètre

Valeur par défaut

Objet

Portal.ACD.Statistics.JTELStats2.Compress.CompressedACDB.SecondsToWait

7200

Le temps minimum après la fin d'un intervalle de temps avant l'agrégation des statistiques.

Portal.ACD.Statistics.JTELStats2.Compress.CompressedACDB.NextTimeSlice

-

La date/heure de la prochaine tranche horaire à calculer. Ce paramètre peut être réinitialisé à une date/heure antérieure, auquel cas le système recalculera à nouveau tous les intervalles à partir de la date et de l'heure données.

Hintergrund

CompressedA enthält Statistiken bezüglich:

  • Anrufe an Service 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

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

7200

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

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

-

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.CompressedACompressedACDB.CustomCompressDer 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
Le nom d'une procédure stockée, dans JTELStats2, qui est appelé après que les statistiques du système discutées ci-dessous ont été agrégées. Cela peut être utilisé pour fournir des valeurs supplémentaires dans des tableaux supplémentaires comme requis par une installation personnalisée. REMARQUE : la modification des tableaux CompressedA eux-mêmes est NON soutenu.
Portal.ACD.Statistics.JTELStats2.Compress.CompressedACompressedACDB.SuppressErrors0Auf Défini à 1 gesetzt, 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, pour supprimer les erreurs dans la routine CustomCompress. Si ce drapeau est activé, le système poursuit les calculs pour les données, même si la routine personnalisée génère des erreurs.
Portal.ACD.Statistics.JTELStats2.Compress.CompressedACompressedACDB.EndTime02:50Die 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 ZeitL'heure de fin au-delà de laquelle le processus ne s'exécutera pas, et attendra que l'heure de début (StartTime) soit passée avant de continuer. S'il est vide, le processus fonctionne tout le temps.
Portal.ACD.Statistics.JTELStats2.Compress.CompressedACompressedACDB.StartTime22:00Die Startzeit, nach der der Prozess beginnt, bis zur angegebenen Endzeit zu laufen. Wenn leer, läuft der Prozess die ganze Zeit.

Abfrage

L'heure de début après laquelle le processus commencera à s'exécuter jusqu'à l'heure de fin spécifiée. S'il est vide, le processus fonctionne tout le temps.

Requête

Deux tableaux sont fournis, CompressedACDB15 (tranches de temps de 15 minutes) et CompressedACDBDay (compression de jour), agrégés selon la requête suivante Es werden zwei Tabellen bereitgestellt, CompressedA15 (15-Minuten-Zeitabschnitte) und CompressedADay (Tageskomprimierung), die gemäß der folgenden Abfrage aggregiert werden :

Translations Ignore


Code Block
titleCompressedA QueryRequête
SELECT      (Various Aggregations) 
FROM        		JTELStats.StatisticsPartAAcdStatisticsPartB aacdb
LEFT JOIN   	JTELStats.AcdStatisticsPartBStatisticsPartA acdb
    ON     a
	ON		acdb.StatisticsPartAID = a.ID = acdb.StatisticsPartAID
LEFT JOIN   	JTELStats.StatisticsPartB b
    ON      	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;

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

dtCallConnect

bCallerHangup

CauseCodesID

Field

NULL

<> 0

Verlassen

NULL

0

17

Besetzt

NULL

0

<> 17

Abgelehnt

NOT NULL

Offhook

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

Eingehend: Queue_* 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 )

Eingehend: Queue_Serviced_* Fields

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 )

Eingehend: Queue_NotServiced_* Fields

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 )

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)

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

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

Translations Ignore
Code Block
( StatisticsPartB.ID IS NOT NULL )

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

Die folgenden Partitionen werden verwendet:

Bedingung

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_

Die weitere Partitionierung erfolgt nach dem Feld CONNRES.

Ausgehend

Bedingung

Partition

Translations Ignore

DiallerCampaignsID IS NULL

ClickToDial_

Translations Ignore

DiallerCampaignsID IS NOT NULL

Dialler_

Eingehend und Ausgehend: Partitionierung auf CONNRES

CONNRES

Ergebnis

1

OK

2

NoAnswer

3

Busy

4

CallerHangup

6

Rejected

0, 5, > 6

Failure

Tabellen

CompressedA15

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

CompressedADay

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

Felder

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

FeldTypInhalteIDINTEine 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 des Mandanten aus der Clients TabelleServiceNumbersIDINTID der Servicenummer aus der ServiceNumbers Tabelle.DynamicPriorityGroupsIDINTID der Dynamic Priority Group aus der DynamicPriorityGroups Tabelle, oder 0, wenn keine Dynamic Priority Group zugewiesen wurde.RoutingApplicationsIDINTID der Routingapplikation aus der RoutingApplications Tabelle, oder 0, wenn die Anwendung nicht verfügbar ist.AcdGroupsIDINTID der ACD-Gruppe aus der Tabelle AcdGroups, oder 0, wenn keine ACD-Gruppe verfügbar ist.DiallerCampaignsIDINTID der Dialer Kampagne aus der Tabelle DiallerCampaigns, oder 0, wenn keine Dialer Kampagne verfügbar ist.dtIntervalStartDATETIMEDatum und Uhrzeit des Beginns des Intervalls.ServiceNumbersRootNumberVARCHAR(32)Das RootNumber Feld der Servicenummer, wie bei der Erstellung der compressed statistics konfiguriert.ServiceNumbersNameVARCHAR(64)Das Name-Feld der Servicenummer, wie bei der Erstellung der compressed statistics konfiguriert.ServiceNumbersName2VARCHAR(64)Das Name2-Feld der Servicenummer, wie bei der Erstellung der compressed statistics konfiguriert.DynamicPriorityGroupsNameVARCHAR(64)Das Name-Feld aus der Tabelle DynamicPriorityGroups, wie bei der Erstellung der compressed statistics konfiguriert.AcdGroupsNameVARCHAR(64)Das Name-Feld aus der AcdGroups Tabelle, wie bei der Erstellung der compressed statistics konfiguriert.DiallerCampaignsNameVARCHAR(64)Das Name-Feld aus der Dialer Kampagne Tabelle, wie bei der Erstellung der compressed statistics konfiguriert.ServiceNumber_CountINTEingehende Anrufe zu Service Nummer, gesamt.ServiceNumber_Abandoned_CountINTEingehende Anrufe zu Service Nummer, verlassen (Auflegen durch Anrufer).ServiceNumber_Abandoned_Time_CallStart_CallEnd_Total BIGINTEingehende Anrufe zu Service Nummer, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtCallStart bis dtCallEnd.ServiceNumber_Abandoned_Time_CallStart_CallEnd_MaxINTEingehende Anrufe zu Service Nummer, verlassen (Auflegen durch Anrufer), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.ServiceNumber_Busy_CountINTEingehende Anrufe zu Service Nummer, besetzt (von System).ServiceNumber_Busy_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe zu Service Nummer, besetzt (von System), Sekunden gesamt ab dtCallStart bis dtCallEnd.ServiceNumber_Busy_Time_CallStart_CallEnd_MaxINTEingehende Anrufe zu Service Nummer, besetzt (von System), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.ServiceNumber_Reject_CountINTEingehende Anrufe zu Service Nummer, abgelehnt (durch system).ServiceNumber_Reject_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe zu Service Nummer, abgelehnt (durch system), Sekunden gesamt ab dtCallStart bis dtCallEnd.ServiceNumber_Reject_Time_CallStart_CallEnd_MaxINTEingehende Anrufe zu Service Nummer, abgelehnt (durch system), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.ServiceNumber_Offhook_CountINTEingehende Anrufe zu Service Nummer, System offhook.ServiceNumber_Offhook_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe zu Service Nummer, System offhook, Sekunden gesamt ab dtCallStart bis dtCallEnd.ServiceNumber_Offhook_Time_CallStart_CallEnd_MaxINTEingehende Anrufe zu Service Nummer, System offhook, Sekunden Höchstwert ab dtCallStart bis dtCallEnd.ServiceNumber_Offhook_Time_CallConnect_CallEnd_TotalBIGINTEingehende Anrufe zu Service Nummer, System offhook, Sekunden gesamt ab dtCallConnect bis dtCallEnd.ServiceNumber_Offhook_Time_CallConnect_CallEnd_MaxINTEingehende Anrufe zu Service Nummer, System offhook, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd.ACD_CountINTEingehende Anrufe an ACD, gesamt.ACD_StandardService_CountINTEingehende Anrufe an ACD in standardmäßigen Betriebszeiten, gesamt.ACD_NotStandardService_CountINTEingehende Anrufe an ACD in nicht standardmäßigen Betriebszeiten, gesamtACD_Abandoned_CountINTEingehende Anrufe an ACD, verlassen (Auflegen durch Anrufer).ACD_Abandoned_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtCallStart bis dtCallEnd.ACD_Abandoned_Time_CallStart_CallEnd_MaxINTEingehende Anrufe an ACD, verlassen (Auflegen durch Anrufer), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.ACD_Abandoned_Time_GroupStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtGroupStart bis dtCallEnd.ACD_Abandoned_Time_GroupStart_CallEnd_MaxINTEingehende Anrufe an ACD, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtGroupStart bis dtCallEnd.ACD_Busy_CountINTEingehende Anrufe an ACD, besetzt (von system).ACD_Busy_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, besetzt (von system), Sekunden gesamt ab dtCallStart bis dtCallEnd.ACD_Busy_Time_CallStart_CallEnd_MaxINTEingehende Anrufe an ACD, besetzt (von system), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.ACD_Busy_Time_GroupStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, besetzt (von system), Sekunden gesamt ab dtGroupStart bis dtCallEnd.ACD_Busy_Time_GroupStart_CallEnd_MaxINTEingehende Anrufe an ACD, besetzt (von system), Sekunden gesamt ab dtGroupStart bis dtCallEnd.ACD_Reject_CountINTEingehende Anrufe an ACD, abgelehnt (durch system).ACD_Reject_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, abgelehnt (durch system), Sekunden gesamt ab dtCallStart bis dtCallEnd.ACD_Reject_Time_CallStart_CallEnd_MaxINTEingehende Anrufe an ACD, abgelehnt (durch system), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.ACD_Reject_Time_GroupStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, abgelehnt (durch system), Sekunden gesamt ab dtGroupStart bis dtCallEnd.ACD_Reject_Time_GroupStart_CallEnd_MaxINTEingehende Anrufe an ACD, abgelehnt (durch system), Sekunden gesamt ab dtGroupStart bis dtCallEnd.ACD_Offhook_CountINTEingehende Anrufe an ACD, System offhook.ACD_Offhook_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, System offhook, Sekunden gesamt ab dtCallStart bis dtCallEnd.ACD_Offhook_Time_CallStart_CallEnd_MaxINTEingehende Anrufe an ACD, System offhook, Sekunden Höchstwert ab dtCallStart bis dtCallEnd.ACD_Offhook_Time_CallConnect_CallEnd_TotalBIGINTEingehende Anrufe an ACD, System offhook, Sekunden gesamt ab dtCallConnect bis dtCallEnd.ACD_Offhook_Time_CallConnect_CallEnd_MaxINTEingehende Anrufe an ACD, System offhook, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd.ACD_Offhook_Time_GroupStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, System offhook, Sekunden gesamt ab dtGroupStart bis dtCallEnd.ACD_Offhook_Time_GroupStart_CallEnd_MaxINTEingehende Anrufe an ACD, System offhook, Sekunden gesamt ab dtGroupStart bis dtCallEnd.Queue_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, gesamt.Queue_StandardService_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten in standardmäßigen Betriebszeiten, gesamt.Queue_NotStandardService_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten in nicht standardmäßigen Betriebszeiten, gesamt.Queue_Abandoned_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer).Queue_Abandoned_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtCallStart bis dtCallEnd.Queue_Abandoned_Time_CallStart_CallEnd_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.Queue_Abandoned_Time_GroupStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtGroupStart bis dtCallEnd.Queue_Abandoned_Time_GroupStart_CallEnd_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtGroupStart bis dtCallEnd.Queue_Abandoned_Time_QueueStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer), Sekunden gesamt ab dtQueueStart bis dtCallEnd.Queue_Abandoned_Time_QueueStart_CallEnd_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, verlassen (Auflegen durch Anrufer), Sekunden Höchstwert ab dtQueueStart bis dtCallEnd.Queue_Busy_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, besetzt (von system).Queue_Busy_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, besetzt (von system), Sekunden gesamt ab dtCallStart bis dtCallEnd.Queue_Busy_Time_CallStart_CallEnd_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, besetzt (von system), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.Queue_Busy_Time_GroupStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, besetzt (von system), Sekunden gesamt ab dtGroupStart bis dtCallEnd.Queue_Busy_Time_GroupStart_CallEnd_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, besetzt (von system), Sekunden gesamt ab dtGroupStart bis dtCallEnd.Queue_Busy_Time_QueueStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, besetzt (von system), Sekunden gesamt ab dtQueueStart bis dtCallEnd.Queue_Busy_Time_QueueStart_CallEnd_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, besetzt (von system), Sekunden Höchstwert ab dtQueueStart bis dtCallEnd.Queue_Reject_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, abgelehnt (durch system).Queue_Reject_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, abgelehnt (durch system), Sekunden gesamt ab dtCallStart bis dtCallEnd.Queue_Reject_Time_CallStart_CallEnd_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, abgelehnt (durch system), Sekunden Höchstwert ab dtCallStart bis dtCallEnd.Queue_Reject_Time_GroupStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, abgelehnt (durch system), Sekunden gesamt ab dtGroupStart bis dtCallEnd.Queue_Reject_Time_GroupStart_CallEnd_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, abgelehnt (durch system), Sekunden gesamt ab dtGroupStart bis dtCallEnd.Queue_Reject_Time_QueueStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, abgelehnt (durch system), Sekunden gesamt ab dtQueueStart bis dtCallEnd.Queue_Reject_Time_QueueStart_CallEnd_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, abgelehnt (durch system), Sekunden Höchstwert ab dtQueueStart bis dtCallEnd.Queue_Serviced_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient.Queue_Serviced_SLA1_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, Zeit ab dtCallStart bis dtAgentConnect <= ServiceLevelSeconds.Queue_Serviced_SLA2_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, Zeit ab dtCallConnect bis dtAgentConnect <= ServiceLevelSeconds.Queue_Serviced_SLA3_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, Zeit ab dtGroupStart bis dtAgentConnect <= ServiceLevelSeconds.Queue_Serviced_SLA4_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, Zeit ab dtQueueStart bis dtAgentConnect <= ServiceLevelSeconds.Queue_Serviced_StandardService_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, in standardmäßigen Betriebszeiten.Queue_Serviced_StandardService_SLA1_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, in standardmäßigen Betriebszeiten, Zeit ab dtCallStart bis dtAgentConnect <= ServiceLevelSeconds.Queue_Serviced_StandardService_SLA2_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, in standardmäßigen Betriebszeiten, Zeit ab dtCallConnect bis dtAgentConnect <= ServiceLevelSeconds.Queue_Serviced_StandardService_SLA3_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, in standardmäßigen Betriebszeiten, Zeit ab dtGroupStart bis dtAgentConnect <= ServiceLevelSeconds.Queue_Serviced_StandardService_SLA4_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, in standardmäßigen Betriebszeiten, Zeit ab dtQueueStart bis dtAgentConnect <= ServiceLevelSeconds.Queue_Serviced_NotStandardService_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, in nicht standardmäßigen Betriebszeiten.Queue_Serviced_NotStandardService_SLA1_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, in nichtstandardmäßigen Betriebszeiten, Zeit ab dtCallStart bis dtAgentConnect <= ServiceLevelSeconds.Queue_Serviced_NotStandardService_SLA2_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, in nicht standardmäßigen Betriebszeiten, Zeit ab dtCallConnect bis dtAgentConnect <= ServiceLevelSeconds.Queue_Serviced_NotStandardService_SLA3_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, in nicht standardmäßigen Betriebszeiten, Zeit ab dtGroupStart bis dtAgentConnect <= ServiceLevelSeconds.Queue_Serviced_NotStandardService_SLA4_CountINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, in nicht standardmäßigen Betriebszeiten, Zeit ab dtQueueStart bis dtAgentConnect <= ServiceLevelSeconds.Queue_Serviced_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, Sekunden gesamt ab dtCallStart bis dtCallEnd.Queue_Serviced_Time_CallStart_CallEnd_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, Sekunden Höchstwert ab dtCallStart bis dtCallEnd.Queue_Serviced_Time_CallStart_AgentConnect_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, total seconds ab dtCallStart bis dtAgentConnect.Queue_Serviced_Time_CallStart_AgentConnect_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, max seconds ab dtCallStart bis dtAgentConnect.Queue_Serviced_Time_CallConnect_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, Sekunden gesamt ab dtCallConnect bis dtCallEnd.Queue_Serviced_Time_CallConnect_CallEnd_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd.Queue_Serviced_Time_CallConnect_AgentConnect_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, total seconds ab dtCallConnect bis dtAgentConnect.Queue_Serviced_Time_CallConnect_AgentConnect_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, max seconds ab dtCallConnect bis dtAgentConnect.Queue_Serviced_Time_GroupStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, Sekunden gesamt ab dtGroupStart bis dtCallEnd.Queue_Serviced_Time_GroupStart_CallEnd_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, Sekunden gesamt ab dtGroupStart bis dtCallEnd.Queue_Serviced_Time_GroupStart_AgentConnect_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, total seconds ab dtGroupStart bis dtAgentConnect.Queue_Serviced_Time_GroupStart_AgentConnect_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, max seconds ab dtGroupStart bis dtAgentConnect.Queue_Serviced_Time_QueueStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, Sekunden gesamt ab dtQueueStart bis dtCallEnd.Queue_Serviced_Time_QueueStart_CallEnd_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, Sekunden Höchstwert ab dtQueueStart bis dtCallEnd.Queue_Serviced_Time_QueueStart_AgentConnect_TotalBIGINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, total seconds ab dtQueueStart bis dtAgentConnect.Queue_Serviced_Time_QueueStart_AgentConnect_MaxINTEingehende Anrufe an ACD, in Warteschlange eingetreten, von Agent bedient, max seconds ab dtQueueStart bis dtAgentConnect.Queue_NotServiced_CountINTEingehende Anrufe an ACD, in warteschlange eingetreten, ofhook gewesen, nicht von Agent bedient.Queue_NotServiced_StandardService_CountINTEingehende Anrufe an ACD, in warteschlange eingetreten, ofhook gewesen, nicht von Agent bedient, in standardmäßigen Betriebszeiten.Queue_NotServiced_NotStandardService_CountINTEingehende Anrufe an ACD, in warteschlange eingetreten, ofhook gewesen, nicht von Agent bedient, in nicht standardmäßigen Betriebszeiten.Queue_NotServiced_Abandoned_CountINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer.Queue_NotServiced_Abandoned_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden gesamt ab dtCallStart bis dtCallEnd.Queue_NotServiced_Abandoned_Time_CallStart_CallEnd_MaxINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden Höchstwert ab dtCallStart bis dtCallEnd.Queue_NotServiced_Abandoned_Time_CallConnect_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden gesamt ab dtCallConnect bis dtCallEnd.Queue_NotServiced_Abandoned_Time_CallConnect_CallEnd_MaxINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd.Queue_NotServiced_Abandoned_Time_GroupStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden gesamt ab dtGroupStart bis dtCallEnd.Queue_NotServiced_Abandoned_Time_GroupStart_CallEnd_MaxINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden gesamt ab dtGroupStart bis dtCallEnd.Queue_NotServiced_Abandoned_Time_QueueStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden gesamt ab dtQueueStart bis dtCallEnd.Queue_NotServiced_Abandoned_Time_QueueStart_CallEnd_MaxINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch Anrufer, Sekunden Höchstwert ab dtQueueStart bis dtCallEnd.Queue_NotServiced_Reject_CountINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System.Queue_NotServiced_Reject_Time_CallStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden gesamt ab dtCallStart bis dtCallEnd.Queue_NotServiced_Reject_Time_CallStart_CallEnd_MaxINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden Höchstwert ab dtCallStart bis dtCallEnd.Queue_NotServiced_Reject_Time_CallConnect_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden gesamt ab dtCallConnect bis dtCallEnd.Queue_NotServiced_Reject_Time_CallConnect_CallEnd_MaxINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd.Queue_NotServiced_Reject_Time_GroupStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden gesamt ab dtGroupStart bis dtCallEnd.Queue_NotServiced_Reject_Time_GroupStart_CallEnd_MaxINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden gesamt ab dtGroupStart bis dtCallEnd.Queue_NotServiced_Reject_Time_QueueStart_CallEnd_TotalBIGINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden gesamt ab dtQueueStart bis dtCallEnd.Queue_NotServiced_Reject_Time_QueueStart_CallEnd_MaxINTEingehende Anrufe an ACD, in warteschlange eingetreten, nicht von Agent bedient, Auflegen durch System, Sekunden Höchstwert ab dtQueueStart bis dtCallEnd.AgentCalls_CountINTEingehende Anrufe an Agenten, gesamt.AgentCalls_OK_CountINTEingehende Anrufe an Agenten, Agent hat angenommen.AgentCalls_OK_Time_CallStart_CallConnect_TotalBIGINTEingehende Anrufe an Agenten, Agent hat angenommen, Sekunden gesamt ab dtCallStart bis dtCallConnect (agent leg).AgentCalls_OK_Time_CallStart_CallConnect_MaxINTEingehende Anrufe an Agenten, Agent hat angenommen, Sekunden Höchstwert ab dtCallStart bis dtCallConnect (agent leg).AgentCalls_OK_Time_CallConnect_CallEnd_TotalBIGINTEingehende Anrufe an Agenten, Agent hat angenommen, Sekunden gesamt ab dtCallConnect bis dtCallEnd (agent leg).AgentCalls_OK_Time_CallConnect_CallEnd_MaxINTEingehende Anrufe an Agenten, Agent hat angenommen, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd (agent leg).AgentCalls_OK_PostCall_CountINTEingehende Anrufe an Agenten, Agent hat angenommen, Nachbearbeitung erforderlich.AgentCalls_OK_PostCall_Time_TotalBIGINTEingehende Anrufe an Agenten, Agent hat angenommen, Nachbearbeitung erforderlich, Sekunden gesamt.AgentCalls_OK_PostCall_Time_MaxINTEingehende Anrufe an Agenten, Agent hat angenommen, Nachbearbeitung erforderlich, Sekunden Höchstwert.AgentCalls_NoAnswer_CountINTEingehende Anrufe an Agenten, keine Antwort.AgentCalls_Busy_CountINTEingehende Anrufe an Agenten, besetzt.AgentCalls_CallerHangup_CountINTEingehende Anrufe an Agenten, Auflegen durch Anrufer während der Weiterleitung.AgentCalls_Reject_CountINTEingehende Anrufe an Agenten, abgelehnt.AgentCalls_Failure_CountINTEingehende Anrufe an Agenten, fehlgeschlagen.GroupTransfer_CountINTEingehend, Weiterleitung an Gruppe, gesamt.GroupTransfer_OK_CountINTEingehend, Weiterleitung an Gruppe, OK.GroupTransfer_OK_Time_CallStart_CallConnect_TotalBIGINTEingehend, Weiterleitung an Gruppe, OK, Sekunden gesamt ab dtCallStart bis dtCallConnect (zu group leg).GroupTransfer_OK_Time_CallStart_CallConnect_MaxINTEingehend, Weiterleitung an Gruppe, OK, Sekunden Höchstwert ab dtCallStart bis dtCallConnect (zu group leg).GroupTransfer_OK_Time_CallConnect_CallEnd_TotalBIGINTEingehend, Weiterleitung an Gruppe, OK, Sekunden gesamt ab dtCallConnect bis dtCallEnd (zu group leg).GroupTransfer_OK_Time_CallConnect_CallEnd_MaxINTEingehend, Weiterleitung an Gruppe, OK, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd (zu group leg).GroupTransfer_NoAnswer_CountINTEingehend, Weiterleitung an Gruppe, keine Antwort.GroupTransfer_Busy_CountINTEingehend, Weiterleitung an Gruppe, besetzt.GroupTransfer_CallerHangup_CountINTEingehend, Weiterleitung an Gruppe, Auflegen durch Anrufer während der Weiterleitung.GroupTransfer_Reject_CountINTEingehend, Weiterleitung an Gruppe, abgelehnt.GroupTransfer_Failure_CountINTEingehend, Weiterleitung an Gruppe, fehlgeschlagen.AgentTransfer_CountINTEingehend, Weiterleitung an Agent, gesamt. AgentTransfer_OK_CountINTEingehend, Weiterleitung an Agent, OK. AgentTransfer_OK_Time_CallStart_CallConnect_TotalBIGINTEingehend, Weiterleitung an Agent, OK, Sekunden gesamt ab dtCallStart bis dtCallConnect (zu group leg).AgentTransfer_OK_Time_CallStart_CallConnect_MaxINTEingehend, Weiterleitung an Agent, OK, Sekunden Höchstwert ab dtCallStart bis dtCallConnect (zu group leg).AgentTransfer_OK_Time_CallConnect_CallEnd_TotalBIGINTEingehend, Weiterleitung an Agent, OK, Sekunden gesamt ab dtCallConnect bis dtCallEnd (zu group leg).AgentTransfer_OK_Time_CallConnect_CallEnd_MaxINTEingehend, Weiterleitung an Agent, OK, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd (zu group leg).AgentTransfer_NoAnswer_CountINTEingehend, Weiterleitung an Agent, keine Antwort.AgentTransfer_Busy_CountINTEingehend, Weiterleitung an Agent, besetzt.AgentTransfer_CallerHangup_CountINTEingehend, Weiterleitung an Agent, Auflegen durch Anrufer während der Weiterleitung.AgentTransfer_Reject_CountINTEingehend, Weiterleitung an Agent, abgelehnt.AgentTransfer_Failure_CountINTEingehend, Weiterleitung an Agent, fehlgeschlagen.NumberTransfer_CountINTEingehend, Weiterleitung an Nummer, gesamt.NumberTransfer_OK_CountINTEingehend, Weiterleitung an Nummer, OK. NumberTransfer_OK_Time_CallStart_CallConnect_TotalBIGINTEingehend, Weiterleitung an Nummer, OK, Sekunden gesamt ab dtCallStart bis dtCallConnect (zu group leg).NumberTransfer_OK_Time_CallStart_CallConnect_MaxINTEingehend, Weiterleitung an Nummer, OK, Sekunden Höchstwert ab dtCallStart bis dtCallConnect (zu group leg).NumberTransfer_OK_Time_CallConnect_CallEnd_TotalBIGINTEingehend, Weiterleitung an Nummer, OK, Sekunden gesamt ab dtCallConnect bis dtCallEnd (zu group leg).NumberTransfer_OK_Time_CallConnect_CallEnd_MaxINTEingehend, Weiterleitung an Nummer, OK, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd (zu group leg).NumberTransfer_NoAnswer_CountINTEingehend, Weiterleitung an Nummer, keine Antwort.NumberTransfer_Busy_CountINTEingehend, Weiterleitung an Nummer, besetzt.NumberTransfer_CallerHangup_CountINTEingehend, Weiterleitung an Nummer, Auflegen durch Anrufer während der Weiterleitung.NumberTransfer_Reject_CountINTEingehend, Weiterleitung an Nummer, abgelehnt.NumberTransfer_Failure_CountINTEingehend, Weiterleitung an Nummer, fehlgeschlagen.ClickToDial_CountINTAusgehend, click to dial, gesamt.ClickToDial_OK_CountINTAusgehend, click to dial, OK.ClickToDial_OK_Time_CallStart_CallConnect_TotalINTAusgehend, click to dial, OK, Sekunden gesamt ab dtCallStart bis dtCallConnect (zu destination leg).ClickToDial_OK_Time_CallStart_CallConnect_MaxINTAusgehend, click to dial, OK, Sekunden Höchstwert ab dtCallStart bis dtCallConnect (zu destination leg).ClickToDial_OK_Time_CallConnect_CallEnd_TotalINTAusgehend, click to dial, OK, Sekunden gesamt ab dtCallConnect bis dtCallEnd (zu destination leg).ClickToDial_OK_Time_CallConnect_CallEnd_MaxINTAusgehend, click to dial, OK, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd (zu destination leg).ClickToDial_NoAnswer_CountINTAusgehend, click to dial, keine Antwort.ClickToDial_NoAnswer_Time_CallStart_CallEnd_TotalINTAusgehend, click to dial, OK, Sekunden gesamt ab dtCallStart bis dtCallEnd (zu destination leg).ClickToDial_NoAnswer_Time_CallStart_CallEnd_MaxINTAusgehend, click to dial, OK, Sekunden Höchstwert ab dtCallStart bis dtCallEnd (zu destination leg).ClickToDial_Busy_CountINTAusgehend, click to dial, besetzt.ClickToDial_AgentHangup_CountINTAusgehend, click to dial, Auflegen durch Agent vor Anrufsverbindung.ClickToDial_Reject_CountINTAusgehend, click to dial, abgelehnt.ClickToDial_Failure_CountINTAusgehend, click to dial, fehlgeschlagen.Dialler_CountINTAusgehend, aus Dialer Kampagne, gesamt.Dialler_OK_CountINTAusgehend, aus Dialer Kampagne, OK.Dialler_OK_Time_CallStart_CallConnect_TotalINTAusgehend, aus Dialer Kampagne, OK, Sekunden gesamt ab dtCallStart bis dtCallConnect (zu destination leg).Dialler_OK_Time_CallStart_CallConnect_MaxINTAusgehend, aus Dialer Kampagne, OK, Sekunden Höchstwert ab dtCallStart bis dtCallConnect (zu destination leg).Dialler_OK_Time_CallConnect_CallEnd_TotalINTAusgehend, aus Dialer Kampagne, OK, Sekunden gesamt ab dtCallConnect bis dtCallEnd (zu destination leg).Dialler_OK_Time_CallConnect_CallEnd_MaxINTAusgehend, aus Dialer Kampagne, OK, Sekunden Höchstwert ab dtCallConnect bis dtCallEnd (zu destination leg).Dialler_NoAnswer_CountINTAusgehend, aus Dialer Kampagne, keine Antwort.Dialler_NoAnswer_Time_CallStart_CallEnd_TotalINTAusgehend, aus Dialer Kampagne, OK, Sekunden gesamt ab dtCallStart bis dtCallEnd (zu destination leg).Dialler_NoAnswer_Time_CallStart_CallEnd_MaxINTAusgehend, aus Dialer Kampagne, OK, Sekunden Höchstwert ab dtCallStart bis dtCallEnd (zu destination leg).Dialler_Busy_CountINTAusgehend, aus Dialer Kampagne, besetzt.Dialler_AgentHangup_CountINTAusgehend, aus Dialer Kampagne, Auflegen durch Agent vor Anrufsverbindung.Dialler_Reject_CountINTAusgehend, aus Dialer Kampagne, abgelehnt.Dialler_Failure_CountINTAusgehend, aus Dialer Kampagne, fehlgeschlagen. Sv translation
languagefr
LEFT JOIN	JTELWeb.AcdGroups g
	ON		b.AcdGroupsID = g.ID 
WHERE		( a.ClientsID = _ClientsID )
			AND
			( acdb.dtGroupStart BETWEEN _Timeslice_Begin AND Timeslice_End_ )
GROUP BY	acdb.ID;



Répartition et agrégations 

Lorsque les données sont agrégées, elles sont divisées en plusieurs partitions cohérentes, selon la logique suivante. Les agrégations qui en résultent permettent soit de compter un appel, si une condition est remplie, soit de déterminer le temps entre deux horodatages.

Inbound Fields

Partitionne tous les enregistrements à l’aide du champ AcdGroupEntryReasonsID de AcdStatisticsPartB.

acdb.AcdGroupEntryReasonsID

Field

NULL

Direct

1

OverflowIn_TransferIn

2

OverflowIn_GroupRules

3

OverflowIn_IVR


Partitionne tous les enregistrements à l’aide du champ AcdGroupEndReasonsID de AcdStatisticsPartB.

Abandoned_* Fields

La condition utilisée est :

Translations Ignore


Code Block
( acdb.AcdGroupEndReasonsID IN ( 1, 2, 3, 4 ) )


NotQueued_Hangup field

La condition utilisée est :

Translations Ignore


Code Block
( acdb.AcdGroupEndReasonsID IN ( 200, 205, 207 ) )


NotQueued_Rule_* Fields

La condition utilisée est :

Translations Ignore


Code Block
( acdb.AcdGroupEndReasonsID IN ( 100, 101, 102, 105, 107 ) )


Queued_Hungup field

La condition utilisée est :

Translations Ignore


Code Block
( acdb.AcdGroupEndReasonsID = 206 )


Queued_Rule_* Fields

La condition utilisée est :

Translations Ignore


Code Block
( acdb.AcdGroupEndReasonsID IN ( 106, 108, 109 ) )


AgentCalls_*

La condition utilisée est :

Translations Ignore


Code Block
acdb.AcdGroupEndReasonsID IN ( 5, 103, 104, 203, 204 )


Tables

CompressedACDB15

Ce tableau contient des statistiques compressées pour des intervalles de 15 minutes.

CompressedACDBDay

Ce tableau contient des statistiques compressées pour les intervalles de jours.

Champs

Les définitions des champs sont essentiellement les mêmes, dans les deux tableaux, seuls les intervalles d'agrégation sont différents.

ChampTypeContenus
IDINTUn identifiant unique attribué à chaque enregistrement. Notez que les ID ne sont pas réutilisés, car si un intervalle est recalculé, l'enregistrement est ajouté avec REPLACE, c'est-à-dire que l'enregistrement existant sera supprimé et un nouvel enregistrement avec un nouvel ID sera créé à sa place.
ClientsIDINTID client à partir de la table Clients.
ServiceNumbersIDINTID du numéro de service à partir du tableau ServiceNumbers.
DynamicPriorityGroupsIDINTID du groupe de priorité dynamique du tableau DynamicPriorityGroups, ou 0 si aucun groupe de priorité dynamique n'a été utilisé.
RoutingApplicationsIDINTID de l'application de routage dans le tableau des RoutingApplications, ou 0 si aucune n'a été utilisée.
AcdGroupsIDINTID du groupe ACD, à partir de la table AcdGroups, ou 0 pour les appels qui n'entrent pas dans ACD.
DiallerCampaignsIDINTID de la campagne de numérotation, à partir du tableau DiallerCampaigns, ou 0 pour les appels qui n'ont pas fait l'objet d'une campagne de numérotation.
dtIntervalStartDATETIMEDate et heure du début de l'intervalle.
ServiceNumbersRootNumberVARCHAR(32)Le champ RootNumber du numéro de service, tel qu'il a été configuré lors de la création des statistiques compressées.
ServiceNumbersNameVARCHAR(64)Le champ Nom du numéro de service, tel qu'il a été configuré lors de la création des statistiques compressées.
ServiceNumbersName2VARCHAR(64)Le champ Name2 du numéro de service, tel qu'il a été configuré lors de la création des statistiques compressées.
DynamicPriorityGroupsNameVARCHAR(64)Le champ Nom de la table DynamicPriorityGroups, tel qu'il a été configuré lors de la création des statistiques compressées.
AcdGroupsNameVARCHAR(64)Le champ Nom de la table AcdGroups, tel qu'il a été configuré lors de la création des statistiques compressées.
DiallerCampaignsNameVARCHAR(64)Le champ Nom de la table DiallerCampaigns, tel qu'il a été configuré lors de la création des statistiques compressées.
ACD_CountINTAppels entrants vers ACD, total.
ACD_Direct

INT

Appels acheminés directement vers le groupe ACD et il s'agit du premier groupe ACD dans lequel l'appel a été traité.
ACD_OverflowIn_TransferInINTAppels acheminés vers le groupe ACD car un agent effectue un transfert d'appel d'un groupe vers un autre groupe (en aveugle ou assisté)
ACD_OverflowIn_GroupRulesINTAppels acheminés vers le groupe ACD par une règle de groupe débordant d'un groupe à un autre
ACD_OverflowIn_IVRINTAppels acheminés vers le groupe ACD par l'IVR et ce n'était pas le premier groupe dans lequel l'appel était traité (l'appel était donc dans l'ACD, est parti pour revenir à l'IVR puis a été acheminé vers un autre groupe ACD par l'IVR)
GroupStart_LoggedInForCallsAgentCountExceptPostcallINTNombre d'agents connectés au groupe acd pour les appels au moment où l'appel est entré dans le groupe, sans compter les agents qui étaient en post-appel automatique.
GroupStart_LoggedInForCallsAgentCountINTNombre d'agents connectés au groupe acd pour les appels au moment où l'appel est entré dans le groupe.
GroupStart_PresentAgentCountINTNombre d'agents connectés au groupe ACD qui étaient dans un statut avec l'indicateur « présent » dans le statut de l'agent ACD lorsque l'appel est entré dans le groupe ACD.
GroupStart_LoggedInToAcdAgentCountINTNombre d'agents connectés au groupe ACD (quel que soit leur statut) lorsque l'appel est entré dans le groupe ACD.
GroupStart_LoggedInRequiredSkillAgentCountINTNombre d'agents connectés au groupe ACD (quel que soit leur statut) lorsque l'appel est entré dans le groupe ACD et qui possédaient les compétences requises associées à l'appel.
GroupStart_Client_LoggedInAgentCountINTNombre total d'agents connectés au compte client (sur tous les groupes ACD) lorsque l'appel est entré dans le groupe ACD.
Abandoned_BeforeQueue_CountINTAppels abandonnés avant la file d'attente.
Abandoned_BeforeQueue_Time_GroupStart_GroupEnd_TotalBIGINTAppels abandonnés avant la file d'attente, nombre total de secondes entre dtGroupStart et dtGroupEnd.
Abandoned_BeforeQueue_Time_GroupStart_GroupEnd_MaxINTAppels abandonnés avant la file d'attente, nombre maximal de secondes entre dtGroupStart et dtGroupEnd.
Abandoned_Queue_CountINTAppels abandonnés dans la file d'attente.
Abandoned_Queue_Time_GroupStart_GroupEnd_TotalBIGINTAppels abandonnés dans la file d'attente, nombre total de secondes entre dtGroupStart et dtGroupEnd.
Abandoned_Queue_Time_GroupStart_GroupEnd_MaxINTAppels abandonnés dans la file d'attente, nombre maximal de secondes entre dtGroupStart et dtGroupEnd.
Abandoned_Queue_5Sec_CountINTAppels abandonnés en file d'attente en moins de 5 secondes.
Abandoned_Queue_5Sec_Time_GroupStart_GroupEnd_TotalBIGINTAppels abandonnés dans la file d'attente en moins de 5 secondes,  secondes totales entre dtGroupStart et dtGroupEnd.
Abandoned_Queue_5Sec_Time_GroupStart_GroupEnd_MaxINTAppels abandonnés dans la file d'attente en moins de 5 secondes,  secondes maximum entre dtGroupStart et dtGroupEnd.
Abandoned_SLA_CountINTAppels abandonnés dans le niveau de service.
NotQueued_Hangup_Count

INT

Appels qui ne sont pas mis en file d'attente et raccrochés par le système.
NotQueued_Hangup_Time_GroupStart_GroupEnd_TotalBIGINTAppels qui ne sont pas mis en file d'attente et raccrochés par le système, nombre total de secondes entre dtGroupStart et dtGroupEnd.
NotQueued_Hangup_Time_GroupStart_GroupEnd_MaxINTAppels qui ne sont pas mis en file d'attente et raccrochés par le système, secondes maximales entre dtGroupStart et dtGroupEnd.
NotQueued_Rule_CountINTAppels qui ne sont pas mis en file d'attente par une règle de groupe.
NotQueued_Rule_Time_GroupStart_GroupEnd_TotalBIGINTAppels qui ne sont pas mis en file d'attente par une règle de groupe, nombre total de secondes entre dtGroupStart et dtGroupEnd.
NotQueued_Rule_Time_GroupStart_GroupEnd_MaxINTAppels qui ne sont pas mis en file d'attente par une règle de groupe, nombre maximum de secondes entre dtGroupStart et dtGroupEnd.
NotQueued_Rule_Hangup_CountINTAppels qui ne sont pas mis en file d'attente par une règle de groupe et la règle est Raccrocher.
NotQueued_Rule_Hangup_Time_GroupStart_GroupEnd_TotalBIGINTAppels qui ne sont pas mis en file d'attente par une règle de groupe et la règle est Raccrocher, nombre total de secondes entre dtGroupStart et dtGroupEnd.
NotQueued_Rule_Hangup_Time_GroupStart_GroupEnd_MaxINTAppels qui ne sont pas mis en file d'attente par une règle de groupe et la règle est Raccrocher, nombre maximum de secondes entre dtGroupStart et dtGroupEnd.
NotQueued_Rule_Overflow_CountINTAppels qui ne sont pas mis en file d'attente par une règle de groupe et la règle est Débordement vers le groupe.
NotQueued_Rule_Overflow_Time_GroupStart_GroupEnd_TotalBIGINTAppels qui ne sont pas mis en file d'attente par une règle de groupe et la règle est Débordement vers le groupe, nombre total de secondes entre dtGroupStart et dtGroupEnd.
NotQueued_Rule_Overflow_Time_GroupStart_GroupEnd_MaxINTAppels qui ne sont pas mis en file d'attente par une règle de groupe et la règle est Débordement vers le groupe, nombre maximum de secondes entre dtGroupStart et dtGroupEnd.
NotQueued_Rule_MediaEvent_CountINTAppels qui ne sont pas mis en file d'attente par une règle de groupe et la règle est de demander/créer un événement multimédia (messagerie vocale, rappel, télécopie).
NotQueued_Rule_MediaEvent_Time_GroupStart_GroupEnd_TotalBIGINTAppels qui ne sont pas mis en file d'attente par une règle de groupe et la règle est de demander/créer un événement multimédia, nombre total de secondes entre dtGroupStart et dtGroupEnd.
NotQueued_Rule_MediaEvent_Time_GroupStart_GroupEnd_MaxINTAppels qui ne sont pas mis en file d'attente par une règle de groupe et la règle est de demander/créer un événement multimédia, nombre maximum de secondes entre dtGroupStart et dtGroupEnd.
NotQueued_Rule_ExDestination_CountINTAppels qui ne sont pas mis en file d'attente par une règle de groupe et la règle est une destination externe.
NotQueued_Rule_ExDestination_Time_GroupStart_GroupEnd_TotalBIGINTAppels qui ne sont pas mis en file d'attente par une règle de groupe et la règle est Destination externe, nombre total de secondes entre dtGroupStart et dtGroupEnd.
NotQueued_Rule_ExDestination_Time_GroupStart_GroupEnd_MaxINTAppels qui ne sont pas mis en file d'attente par une règle de groupe et la règle est Destination externe, nombre maximum de secondes entre dtGroupStart et dtGroupEnd.
Queued_Hangup_CountINTAppels mis en file d'attente et raccrochés par le système.
Queued_Hangup_Time_GroupStart_GroupEnd_TotalBIGINTAppels mis en file d'attente et raccrochés par le système, nombre total de secondes entre dtGroupStart et dtGroupEnd.
Queued_Hangup_Time_GroupStart_GroupEnd_MaxINTAppels mis en file d'attente et raccrochés par le système, secondes maximales entre dtGroupStart et dtGroupEnd.
Queued_Hangup_Time_QueueStart_GroupEnd_TotalBIGINTAppels mis en file d'attente et raccrochés par le système, nombre total de secondes entre dtqueueStart et dtGroupEnd.
Queued_Hangup_Time_QueueStart_GroupEnd_MaxINTAppels mis en file d'attente et raccrochés par le système, secondes maximales entre dtQueueStart et dtGroupEnd.
Queued_Rule_CountINTAppels mis en file d'attente par une règle de groupe.
Queued_Rule_Time_GroupStart_GroupEnd_TotalBIGINTAppels mis en file d'attente par une règle de groupe, nombre total de secondes entre dtGroupStart et dtGroupEnd.
Queued_Rule_Time_GroupStart_GroupEnd_MaxINTAppels mis en file d'attente par une règle de groupe, nombre maximum de secondes entre dtGroupStart et dtGroupEnd.
Queued_Rule_Hangup_CountINTAppels mis en file d'attente par une règle de groupe et la règle est Raccrocher.
Queued_Rule_Hangup_Time_GroupStart_GroupEnd_TotalBIGINTAppels mis en file d'attente par une règle de groupe et la règle est Raccrocher, nombre total de secondes entre dtGroupStart et dtGroupEnd.
Queued_Rule_Hangup_Time_GroupStart_GroupEnd_MaxINTAppels mis en file d'attente par une règle de groupe et la règle est Raccrocher, nombre maximum de secondes entre dtGroupStart et dtGroupEnd.
Queued_Rule_Overflow_CountINTAppels mis en file d'attente par une règle de groupe et la règle est Débordement vers le groupe.
Queued_Rule_Overflow_Time_GroupStart_GroupEnd_TotalBIGINTAppels mis en file d'attente par une règle de groupe et la règle est Débordement vers le groupe, nombre total de secondes entre dtGroupStart et dtGroupEnd.
Queued_Rule_Overflow_Time_GroupStart_GroupEnd_MaxINTAppels mis en file d'attente par une règle de groupe et la règle est Débordement vers le groupe, nombre maximum de secondes entre dtGroupStart et dtGroupEnd.
Queued_Rule_MediaEvent_CountINTAppels mis en file d'attente par une règle de groupe et la règle est de demander/créer un événement multimédia (messagerie vocale, rappel, télécopie).
Queued_Rule_MediaEvent_Time_GroupStart_GroupEnd_TotalBIGINTAppels mis en file d'attente par une règle de groupe et la règle est de demander/créer un événement multimédia (messagerie vocale, rappel, télécopie), nombre total de secondes entre dtGroupStart et dtGroupEnd.
Queued_Rule_MediaEvent_Time_GroupStart_GroupEnd_MaxINTAppels mis en file d'attente par une règle de groupe et la règle est de demander/créer un événement multimédia (messagerie vocale, rappel, télécopie), nombre maximum de secondes entre dtGroupStart et dtGroupEnd.
Queued_Rule_ExDestination_CountINTAppels mis en file d'attente par une règle de groupe et la règle est Destination externe.
Queued_Rule_ExDestination_Time_GroupStart_GroupEnd_TotalBIGINTAppels mis en file d'attente par une règle de groupe et la règle est Destination externe, nombre total de secondes entre dtGroupStart et dtGroupEnd.
Queued_Rule_ExDestination_Time_GroupStart_GroupEnd_MaxINTAppels mis en file d'attente par une règle de groupe et la règle est Destination externe, nombre maximum de secondes entre dtGroupStart et dtGroupEnd.
AgentCall_CountINTNombre total d'appels à l'agent.
AgentCall_SLA_CountINTNombre total d'appels à l'agent au sein du niveau de service.
AgentCall_Time_GroupStart_GroupEnd_TotalBIGINTNombre total d'appels à l'agent, nombre total de secondes entre dtGroupStart et dtGroupEnd.
AgentCall_Time_GroupStart_GroupEnd_MaxINTNombre total d'appels à l'agent, nombre maximal de secondes entre dtGroupStart et dtGroupEnd.
AgentCall_Time_GroupStart_AgentConnect_TotalBIGINTNombre total d'appels à l'agent, nombre total de secondes entre dtGroupStart et dtAgentConnect.
AgentCall_Time_GroupStart_AgentConnect_MaxINTNombre total d'appels à l'agent, nombre maximal de secondes entre dtGroupStart et dtAgentConnect.
AgentCall_Time_QueueStart_AgentConnect_TotalBIGINTNombre total d'appels à l'agent, nombre total de secondes entre dQueueStart et dtAgentConnect.
AgentCall_Time_QueueStart_AgentConnect_MaxINTNombre total d'appels à l'agent, nombre maximal de secondes entre dtQueueStart et dtAgentConnect.
AgentCall_Time_AgentConnect_GroupEnd_TotalBIGINTNombre total d'appels à l'agent, nombre total de secondes entre dtAgentConnect et dtGroupEnd.
AgentCall_Time_AgentConnect_GroupEnd_MaxINTNombre total d'appels à l'agent, nombre maximal de secondes entre dtAgentConnect et dtGroupEnd.
AgentCall_Time_CallStart_CallEnd_TotalBIGINTNombre total d'appels à l'agent, nombre total de secondes entre dtCallStart et dtCallEnd.
AgentCall_Time_CallStart_CallEnd_MaxINTNombre total d'appels à l'agent, nombre maximal de secondes entre dtCallStart et dtCallEnd.
AgentCall_PostCall_Time_TotalBIGINTAppels entrants vers les agents, agent répondu, travail post-appel requis, nombre total de secondes
AgentCall_PostCall_Time_MaxINTAppels entrants vers les agents, agent répondu, travail post-appel requis, nombre maximal de secondes

Fond

CompressedA contient des statistiques concernant :

  • Numéros d'appel de service
  • Appels passés aux groupes de l'ACD
  • Appels aux agents (résumé pour le groupe ACD)
  • Appels sortants effectués par des agents

Des informations telles que :

  • Le nombre d'appels
    • Répondu
    • Occupé
    • Rejeté
    • Abandonné
  • Indicateurs de service pour les appels
    • Appels reçus dans des délais de service normaux
    • Niveau de service des appels selon 4 critères différents
  • Transferts d'appels
    • Lié à l'agent
    • Agent du groupe
    • Agent vers une destination extérieure
  • Horaires des appels
    • Du début à la fin de l'appel
    • Du décrochage à la fin
    • Du début de l'appel à la connexion à l'agent
    • ...

est fournie.

Remarque : ces statistiques étant agrégées, elles ne fournissent pas autant d'informations que les fiches d'appel. Toutefois, ces données agrégées peuvent être conservées pendant une période beaucoup plus longue.

Note sur les transferts en aveugle :

  • En raison du fonctionnement des transferts de groupe aveugles (l'appel est immédiatement transféré, quelle que soit la configuration du groupe), il n'y a aucune indication ou possibilité de voir si l'appel est effectivement parvenu à un autre agent.

Paramètres

Les données sont agrégées en fonction du réglage des paramètres :

Paramètre

Valeur par défaut

Objet

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

7200

Le temps minimum après la fin d'un intervalle de temps avant l'agrégation des statistiques.

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

-

La date/heure de la prochaine tranche horaire à calculer. Ce paramètre peut être réinitialisé à une date/heure antérieure, auquel cas le système recalculera à nouveau tous les intervalles à partir de la date et de l'heure données.

Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.CustomCompressLe nom d'une procédure stockée, dans JTELStats2, qui est appelé après que les statistiques du système discutées ci-dessous ont été agrégées. Cela peut être utilisé pour fournir des valeurs supplémentaires dans des tableaux supplémentaires comme requis par une installation personnalisée. REMARQUE : la modification des tableaux CompressedA eux-mêmes est NON soutenu.Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.SuppressErrors0Défini à 1, pour supprimer les erreurs dans la routine CustomCompress. Si ce drapeau est activé, le système poursuit les calculs pour les données, même si la routine personnalisée génère des erreurs.Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.EndTime02:50L'heure de fin au-delà de laquelle le processus ne s'exécutera pas, et attendra que l'heure de début (StartTime) soit passée avant de continuer. S'il est vide, le processus fonctionne tout le temps.Portal.ACD.Statistics.JTELStats2.Compress.CompressedA.StartTime22:00L'heure de début après laquelle le processus commencera à s'exécuter jusqu'à l'heure de fin spécifiée. S'il est vide, le processus fonctionne tout le temps.

Requête

Deux tableaux sont fournis, CompressedA15 (tranches de temps de 15 minutes) et CompressedADay (compression de jour), agrégés selon la requête suivante :

Translations Ignore
Code Block
titleCompressedA Requête
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;

Répartition et agrégations 

Lorsque les données sont agrégées, elles sont divisées en plusieurs partitions cohérentes, selon la logique suivante. Les agrégations qui en résultent permettent soit de compter un appel, si une condition est remplie, soit de déterminer le temps entre deux horodatages.

Entrants et sortants

bOutbound

Champs

0

Entrant

1Sortant

Entrant: Champs ServiceNumber_ *

Participe à tous les enregistrements en utilisant uniquement les champs de StatisticsPartA.

dtCallConnect

bCallerHangup

CauseCodesID

Champ

NULL

<> 0

Abandonné

NULL

0

17

Occupé

NULL

0

<> 17

Rejeter

NOT NULL

Décrochage

Entrant: ACD_* Fields

Les enregistrements de partitions uniquement pour lesquels il existe un enregistrement AcdStatisticsPartB, et pour lesquels il ne s'agit pas d'un transfert de groupe ou d'un débordement de groupe.

La condition utilisé est:

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

Entrant: Queue_* Fields

Les enregistrements de partitions supplémentaires qui sont entrés dans l'ACD, seuls les appels qui entrent dans la file d'attente.

La condition supplémentaire utilisée est :

Translations Ignore
Code Block
( AcdStatisticsPartB.dtQueueStart IS NOT NULL )

Entrant: Queue_Serviced_* Fields

En outre, pour les appels qui sont entrés dans la file d'attente, seuls les appels auxquels un agent a répondu sont pris en compte (les appels ont été définitivement décrochés). La condition utilisé est:

La condition supplémentaire utilisée est :

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

Entrant: Queue_NotServiced_* Fields

Cloisonnement supplémentaire sur les appels qui sont entrés dans la file d'attente, et qui ont été décrochés, uniquement les appels non répondu par un agent sont prises en considération. La condition utilisé est:

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

Ces appels sont divisés en deux catégories : les appels abandonnés et les appels rejetés, comme suit :

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

Entrant: Champs AgentCalls_*, GroupTransfer_*, AgentTransfer_*, NumberTransfer_*

Seuls les documents qui remplissent la condition suivante sont pris en considération :

Translations Ignore
Code Block
( StatisticsPartB.ID IS NOT NULL )

C'est-à-dire où un appel d'agent ou de destination a été passé.

Les partitions suivantes sont utilisées :

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_

Le partitionnement ultérieur se fait en fonction du champ CONNRES.

Sortant

Condition

Partitionnement

Translations Ignore

DiallerCampaignsID IS NULL

ClickToDial_

Translations Ignore

DiallerCampaignsID IS NOT NULL

Dialler_

Entrants et sortants Partitionnement sur CONNRES

CONNRES

Résultat

1

OK

2

Pas de réponse

3

Occupé

4

CallerHangup

6

Rejeté

0, 5, > 6

Échec

Tables

CompressedA15

Ce tableau contient des statistiques compressées pour des intervalles de 15 minutes.

CompressedADay

Ce tableau contient des statistiques compressées pour les intervalles de jours.

Champs

Les définitions des champs sont essentiellement les mêmes, dans les deux tableaux, seuls les intervalles d'agrégation sont différents.

Entrant transfert au groupe, OK, secondes totales de dtCallStart à dtCallConnect (à la jambe de groupe).

Entrant transfert au groupe, OK, secondes maximum de dtCallStart à dtCallConnect (à la jambe de groupe).

Entrant transfert au groupe, OK, secondes totales de dtCallConnect à dtCallEnd (à la jambe de groupe).

Entrant transfert au groupe, OK, secondes maximum de dtCallConnect à dtCallEnd (à la jambe de groupe).

Sortant, de la campagne composeur, Echoué.
ChampTypeContenus
IDINTUn identifiant unique attribué à chaque enregistrement. Notez que les ID ne sont pas réutilisés, car si un intervalle est recalculé, l'enregistrement est ajouté avec REPLACE, c'est-à-dire que l'enregistrement existant sera supprimé et un nouvel enregistrement avec un nouvel ID sera créé à sa place.
ClientsIDINTID client à partir de la table Clients.
ServiceNumbersIDINTID du numéro de service à partir du tableau ServiceNumbers.
DynamicPriorityGroupsIDINTID du groupe de priorité dynamique du tableau DynamicPriorityGroups, ou 0 si aucun groupe de priorité dynamique n'a été utilisé.
RoutingApplicationsIDINTID de l'application de routage dans le tableau des RoutingApplications, ou 0 si aucune n'a été utilisée.
AcdGroupsIDINTID du groupe ACD, à partir de la table AcdGroups, ou 0 pour les appels qui n'entrent pas dans ACD.
DiallerCampaignsIDINTID de la campagne de numérotation, à partir du tableau DiallerCampaigns, ou 0 pour les appels qui n'ont pas fait l'objet d'une campagne de numérotation.
dtIntervalStartDATETIMEDate et heure du début de l'intervalle.
ServiceNumbersRootNumberVARCHAR(32)Le champ RootNumber du numéro de service, tel qu'il a été configuré lors de la création des statistiques compressées.
ServiceNumbersNameVARCHAR(64)Le champ Nom du numéro de service, tel qu'il a été configuré lors de la création des statistiques compressées.
ServiceNumbersName2VARCHAR(64)Le champ Name2 du numéro de service, tel qu'il a été configuré lors de la création des statistiques compressées.
DynamicPriorityGroupsNameVARCHAR(64)Le champ Nom de la table DynamicPriorityGroups, tel qu'il a été configuré lors de la création des statistiques compressées.
AcdGroupsNameVARCHAR(64)Le champ Nom de la table AcdGroups, tel qu'il a été configuré lors de la création des statistiques compressées.
DiallerCampaignsNameVARCHAR(64)Le champ Nom de la table DiallerCampaigns, tel qu'il a été configuré lors de la création des statistiques compressées.
ServiceNumber_CountINTAppels entrants au numéro de service, total.
Appels entrants au numéro de service, total.INTAppels Entrantau service, abandonné (raccrochage de l'appelant).
ServiceNumber_Abandoned_Time_CallStart_CallEnd_Total BIGINTAppels Entrant au service, abandonné (raccrochage de l'appelant), le nombre total de secondes entre dtCallStart et dtCallEnd.
ServiceNumber_Abandoned_Time_CallStart_CallEnd_MaxINTAppels Entrant au numéro de service, abandonné (raccrochage de l'appelant), max. secondes entre dtCallStart et dtCallEnd.
ServiceNumber_Busy_CountINTAppels Entrant au numéro de service, occupé (du système).
ServiceNumber_Busy_Time_CallStart_CallEnd_TotalBIGINTAppels Entrant au numéro de service, occupé (du système), nombre total de secondes entre dtCallStart et dtCallEnd.
ServiceNumber_Busy_Time_CallStart_CallEnd_MaxINTAppels Entrant au numéro de service, occupé (du système), nombre total de secondes entre dtCallStart et dtCallEnd.
ServiceNumber_Reject_CountINTAppels Entrant au numéro de service, abandonné (raccrochage de l'appelant).
ServiceNumber_Reject_Time_CallStart_CallEnd_TotalBIGINTAppels Entrant au numéro de service, rejeté (par le système), nombre total de secondes entre dtCallStart et dtCallEnd.
ServiceNumber_Reject_Time_CallStart_CallEnd_MaxINTAppels Entrant au numéro de service, rejeté (par le système), max. secondes entre dtCallStart et dtCallEnd.
ServiceNumber_Offhook_CountINTAppels Entrant au numéro de service, décrochage du système.
ServiceNumber_Offhook_Time_CallStart_CallEnd_TotalBIGINTAppels Entrant au numéro de service, au décrochage du système, au nombre total de secondes entre dtCallStart et dtCallEnd.
ServiceNumber_Offhook_Time_CallStart_CallEnd_MaxINTAppels Entrant au numéro de service, décrochage du système, secondes maximum entre dtCallStart et dtCallEnd.
ServiceNumber_Offhook_Time_CallConnect_CallEnd_TotalBIGINTAppels Entrant au numéro de service, décrochage du système, secondes maximum entre dtCallStart et dtCallEnd.
ServiceNumber_Offhook_Time_CallConnect_CallEnd_MaxINTAppels Entrantau numéro de service, décrochage du système, secondes maximum de dtCallConnect à dtCallEnd.
ACD_CountINTAppels Entrantà l'ACD, total.
ACD_StandardService_CountINTAppels Entrantà l'ACD en temps de service standard, au total.
ACD_NotStandardService_CountINTAppels Entrant à l'ACD en dehors des heures de service normales, au total.
ACD_Abandoned_CountINTAppels Entrant à l'ACD, abandonné (appel raccroché).
ACD_Abandoned_Time_CallStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, abandonné (raccrochage de l'appelant), nombre total de secondes de dtCallStart à dtCallEnd.
ACD_Abandoned_Time_CallStart_CallEnd_MaxINTAppels Entrant à l'ACD, abandonné (raccrochage de l'appelant), max. secondes de dtCallStart à dtCallEnd.
ACD_Abandoned_Time_GroupStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, abandonné (raccrochage de l'appelant), nombre total de secondes entre dtGroupStart et dtCallEnd.
ACD_Abandoned_Time_GroupStart_CallEnd_MaxINTAppels Entrant à l'ACD, abandonné (raccrochage de l'appelant), max. secondes entre dtGroupStart et dtCallEnd.
ACD_Busy_CountINTAppels Entrant à l'ACD, occupé (à partir du système).
ACD_Busy_Time_CallStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, occupé (du système), secondes totales de dtCallStart à dtCallEnd.
ACD_Busy_Time_CallStart_CallEnd_MaxINTAppels Entrant à l'ACD, occupé (du système), max. secondes de dtCallStart à dtCallEnd.
ACD_Busy_Time_GroupStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, occupé (du système), secondes totales de dtGroupStart à dtCallEnd.
ACD_Busy_Time_GroupStart_CallEnd_MaxINTAppels Entrant à l'ACD, occupé (du système), secondes max. de dtGroupStart à dtCallEnd.
ACD_Reject_CountINTAppels Entrant à l'ACD, rejeté (par système).
ACD_Reject_Time_CallStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, rejetée (par système), nombre total de secondes de dtCallStart à dtCallEnd.
ACD_Reject_Time_CallStart_CallEnd_MaxINTAppels Entrant à l'ACD, rejeté (par le système), max. secondes de dtCallStart à dtCallEnd.
ACD_Reject_Time_GroupStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, rejetée (par système), nombre total de secondes entre dtGroupStart et dtCallEnd.
ACD_Reject_Time_GroupStart_CallEnd_MaxINTAppels Entrant à l'ACD, rejetée (par le système), max. secondes entre dtGroupStart et dtCallEnd.
ACD_Offhook_CountINTAppels Entrant à l'ACD, déconnexion du système.
ACD_Offhook_Time_CallStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, décrochage du système, secondes totales de dtCallStart à dtCallEnd.
ACD_Offhook_Time_CallStart_CallEnd_MaxINTAppels Entrant à l'ACD, déconnexion du système, secondes maximum de dtCallStart à dtCallEnd.
ACD_Offhook_Time_CallConnect_CallEnd_TotalBIGINTAppels Entrant à l'ACD, décrochage du système, total des secondes de dtCallConnect à dtCallEnd.
ACD_Offhook_Time_CallConnect_CallEnd_MaxINTAppels Entrant à l'ACD, décrochage du système, secondes maximum de dtCallConnect à dtCallEnd.
ACD_Offhook_Time_GroupStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, décrochage du système, secondes totales de dtGroupStart à dtCallEnd.
ACD_Offhook_Time_GroupStart_CallEnd_MaxINTAppels Entrant à l'ACD, décrochage du système, secondes totales de dtGroupStart à dtCallEnd.
Queue_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, total.
Queue_StandardService_CountINTAppels Entrant à l'ACD, file d'attente saisie en temps de service standard, total.
Queue_NotStandardService_CountINTAppels Entrant à l'ACD, file d'attente saisie en dehors des heures de service normales, total.
Queue_Abandoned_CountINTAppels Entrant à l'ACD, entrée dans la file d'attente, abandon (raccrochage de l'appelant).
Queue_Abandoned_Time_CallStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente saisie, abandon (raccrochage de l'appelant), nombre total de secondes de dtCallStart à dtCallEnd.
Queue_Abandoned_Time_CallStart_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente entrée, abandonnée (raccrochage de l'appelant), max. secondes de dtCallStart à dtCallEnd.
Queue_Abandoned_Time_GroupStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente saisie, abandon (raccrochage de l'appelant), nombre total de secondes entre dtGroupStart et dtCallEnd.
Queue_Abandoned_Time_GroupStart_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, abandon (raccrochage de l'appelant), max. secondes de dtGroupStart à dtCallEnd.
Queue_Abandoned_Time_QueueStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente saisie, abandon (raccrochage de l'appelant), nombre total de secondes de dtQueueStart à dtCallEnd.
Queue_Abandoned_Time_QueueStart_CallEnd_MaxINTAppels Entrantvers l'ACD, file d'attente saisie, abandon (raccrochage de l'appelant), max. secondes entre dtQueueStart et dtCallEnd.
Queue_Busy_CountINTAppels Entrantà l'ACD, file d'attente d'entrée, occupé (du système).
Queue_Busy_Time_CallStart_CallEnd_TotalBIGINTAppels Entrantà l'ACD, file d'attente saisie, occupé (du système), nombre total de secondes de dtCallStart à dtCallEnd.
Queue_Busy_Time_CallStart_CallEnd_MaxINTAppels Entrantà l'ACD, file d'attente d'entrée, occupé (du système), max. secondes de dtCallStart à dtCallEnd.
Queue_Busy_Time_GroupStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, occupé (du système), secondes totales de dtGroupStart à dtCallEnd.
Queue_Busy_Time_GroupStart_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, occupé (du système), secondes maximum de dtGroupStart à dtCallEnd.
Queue_Busy_Time_QueueStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente saisie, occupé (du système), secondes totales de dtQueueStart à dtCallEnd.
Queue_Busy_Time_QueueStart_CallEnd_MaxINTAppels Entrantà l'ACD, file d'attente saisie, occupé (du système), secondes maximum de dtQueueStart à dtCallEnd.
Queue_Reject_CountINTAppels Entrantà l'ACD, entrée dans la file d'attente, rejetée (par système).
Queue_Reject_Time_CallStart_CallEnd_TotalBIGINTAppels Entrantà l'ACD, file d'attente saisie, rejetée (par système), nombre total de secondes de dtCallStart à dtCallEnd.
Queue_Reject_Time_CallStart_CallEnd_MaxINTAppels Entrantà l'ACD, file d'attente entrée, rejetée (par le système), max. secondes de dtCallStart à dtCallEnd.
Queue_Reject_Time_GroupStart_CallEnd_TotalBIGINTAppels Entrantà l'ACD, file d'attente saisie, rejetée (par système), nombre total de secondes de dtGroupStart à dtCallEnd.
Queue_Reject_Time_GroupStart_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, rejetée (par le système), max. secondes de dtGroupStart à dtCallEnd.
Queue_Reject_Time_QueueStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente saisie, rejetée (par système), nombre total de secondes de dtQueueStart à dtCallEnd.
Queue_Reject_Time_QueueStart_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente entrée, rejetée (par le système), secondes maximum de dtQueueStart à dtCallEnd.
Queue_Serviced_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par un agent.
Queue_Serviced_SLA1_CountINTAppels Entrant à l'ACD, file d'attente saisie, desservie par l'agent, temps de passage de dtCallStart à dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_SLA2_CountINTAppels Entrant à l'ACD, file d'attente saisie, desservie par l'agent, temps de dtCallConnect à dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_SLA3_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, temps de passage de dtGroupStart à dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_SLA4_CountINTAppels Entrant à l'ACD, file d'attente saisie, desservie par l'agent, temps de passage de dtQueueStart à dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_StandardService_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par un agent, en temps de service normal.
Queue_Serviced_StandardService_SLA1_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par un agent, en temps de service standard, temps entre dtCallStart et dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_StandardService_SLA2_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par un agent, en temps de service standard, temps entre dtCallConnect et dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_StandardService_SLA3_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par un agent, en temps de service standard, temps entre dtGroupStart et dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_StandardService_SLA4_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par un agent, en temps de service standard, temps entre dtQueueStart et dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_NotStandardService_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, desservi par un agent, pas en temps de service normal.
Queue_Serviced_NotStandardService_SLA1_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par un agent, pas en temps de service normal, temps entre dtCallStart et dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_NotStandardService_SLA2_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par un agent, pas en temps de service normal, temps entre dtCallConnect et dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_NotStandardService_SLA3_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par un agent, pas en temps de service normal, temps entre dtGroupStart et dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_NotStandardService_SLA4_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par un agent, pas en temps de service normal, temps entre dtQueueStart et dtAgentConnect <= ServiceLevelSeconds.
Queue_Serviced_Time_CallStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, nombre total de secondes de dtCallStart à dtCallEnd.
Queue_Serviced_Time_CallStart_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, max. secondes de dtCallStart à dtCallEnd.
Queue_Serviced_Time_CallStart_AgentConnect_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, nombre total de secondes de dtCallStart à dtAgentConnect.
Queue_Serviced_Time_CallStart_AgentConnect_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, max. secondes de dtCallStart à dtAgentConnect.
Queue_Serviced_Time_CallConnect_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, nombre total de secondes de dtCallConnect à dtCallEnd.
Queue_Serviced_Time_CallConnect_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, max. secondes de dtCallConnect à dtCallEnd.
Queue_Serviced_Time_CallConnect_AgentConnect_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, nombre total de secondes de dtCallConnect à dtAgentConnect.
Queue_Serviced_Time_CallConnect_AgentConnect_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, max. secondes de dtCallConnect à dtAgentConnect.
Queue_Serviced_Time_GroupStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, secondes totales de dtGroupStart à dtCallEnd.
Queue_Serviced_Time_GroupStart_CallEnd_MaxINTAppels Entrant to ACD, entry queue, served by agent, max. seconds from dtGroupStart to dtCallEnd.
Queue_Serviced_Time_GroupStart_AgentConnect_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, nombre total de secondes de dtGroupStart à dtAgentConnect.
Queue_Serviced_Time_GroupStart_AgentConnect_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, max. secondes de dtGroupStart à dtAgentConnect.
Queue_Serviced_Time_QueueStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, nombre total de secondes de dtQueueStart à dtCallEnd.
Queue_Serviced_Time_QueueStart_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, max. secondes de dtQueueStart à dtCallEnd.
Queue_Serviced_Time_QueueStart_AgentConnect_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, nombre total de secondes de dtQueueStart à dtAgentConnect.
Queue_Serviced_Time_QueueStart_AgentConnect_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, desservie par l'agent, max. secondes de dtQueueStart à dtAgentConnect.
Queue_NotServiced_CountINTAppels Entrant à l'ACD, sont entrés dans la file d'attente, ont été décrochés et n'ont pas été pris en charge par l'agent.
Queue_NotServiced_StandardService_CountINTAppels Entrant à l'ACD, entrée dans la file d'attente, ont été raccrochés, non desservies par un agent, dans des délais de service standard.
Queue_NotServiced_NotStandardService_CountINTAppels Entrants à l'ACD, entrée dans la file d'attente, ont été raccrochés, pas d'entretien par un agent, pas dans des délais de service standard.
Queue_NotServiced_Abandoned_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservi par l'agent, raccrochage de l'appelant.
Queue_NotServiced_Abandoned_Time_CallStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, Raccrochage de l'appelant, secondes totales entre dtCallStart et dtCallEnd.
Queue_NotServiced_Abandoned_Time_CallStart_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, Raccrochage de l'appelant, secondes maximum entre dtCallStart et dtCallEnd.
Queue_NotServiced_Abandoned_Time_CallConnect_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, Raccrochage de l'appelant, secondes totales entre dtCallConnect et dtCallEnd.
Queue_NotServiced_Abandoned_Time_CallConnect_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, Raccrochage de l'appelant, secondes maximum entre dtCallConnect et dtCallEnd.
Queue_NotServiced_Abandoned_Time_GroupStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, Raccrochage de l'appelant, secondes totales entre dtGroupStart et dtCallEnd.
Queue_NotServiced_Abandoned_Time_GroupStart_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, Raccrochage de l'appelant, secondes maximum entre dtGroupStart et dtCallEnd.
Queue_NotServiced_Abandoned_Time_QueueStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, Raccrochage de l'appelant, secondes totales entre dtQueueStart et dtCallEnd.
Queue_NotServiced_Abandoned_Time_QueueStart_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, Raccrochage de l'appelant, secondes maximum entre dtQueueStart et dtCallEnd.
Queue_NotServiced_Reject_CountINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservi par l'agent, blocage du système.
Queue_NotServiced_Reject_Time_CallStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, système raccrochage, nombre total de secondes entre dtCallStart et dtCallEnd.
Queue_NotServiced_Reject_Time_CallStart_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, système raccrochage, secondes maximum entre dtCallStart et dtCallEnd.
Queue_NotServiced_Reject_Time_CallConnect_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, système raccrochage, nombre total de secondes entre dtCallConnect et dtCallEnd.
Queue_NotServiced_Reject_Time_CallConnect_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, système Raccrochage, maximum de secondes entre dtCallConnect et dtCallEnd.
Queue_NotServiced_Reject_Time_GroupStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, système raccrochage, nombre total de secondes entre dtGroupStart et dtCallEnd.
Queue_NotServiced_Reject_Time_GroupStart_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, système Raccrochage, max. secondes entre dtGroupStart et dtCallEnd.
Queue_NotServiced_Reject_Time_QueueStart_CallEnd_TotalBIGINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, système raccrochage, nombre total de secondes entre dtQueueStart et dtCallEnd.
Queue_NotServiced_Reject_Time_QueueStart_CallEnd_MaxINTAppels Entrant à l'ACD, file d'attente d'entrée, non desservie par un agent, système Raccrochage, maximum de secondes entre dtQueueStart et dtCallEnd.
AgentCalls_CountINTAppels Entrant aux agents, total.
AgentCalls_OK_CountINTAppels Entrant aux agents, a répondu l'agent.
AgentCalls_OK_Time_CallStart_CallConnect_TotalBIGINTAppels Entrant aux agents, agent répondu, nombre total de secondes entre dtCallStart et dtCallConnect (jambe de l'agent).
AgentCalls_OK_Time_CallStart_CallConnect_MaxINTAppels Entrant aux agents, réponse de l'agent, max. secondes entre dtCallStart et dtCallConnect (jambe de l'agent).
AgentCalls_OK_Time_CallConnect_CallEnd_TotalBIGINTAppels Entrant aux agents, réponse de l'agent, nombre total de secondes entre dtCallConnect et dtCallEnd (jambe de l'agent).
AgentCalls_OK_Time_CallConnect_CallEnd_MaxINTAppels Entrant aux agents, réponse de l'agent, max. secondes de dtCallConnect à dtCallEnd (jambe de l'agent).
AgentCalls_OK_PostCall_CountINTAppels Entrant aux agents, l'agent a répondu, travail de post-appel requis.
AgentCalls_OK_PostCall_Time_TotalBIGINTAppels Entrant aux agents, réponse de l'agent, travail requis après l'appel, nombre total de secondes.
AgentCalls_OK_PostCall_Time_MaxINTAppels Entrant aux agents, l'agent a répondu, travail post-appel requis, secondes maximum.
AgentCalls_NoAnswer_CountINTAppels Entrant aux agents, pas de réponse.
AgentCalls_Busy_CountINTAppels Entrant aux agents, occupés.
AgentCalls_CallerHangup_CountINTAppels Entrant aux agents, l'appelant raccroche pendant le transfert.
AgentCalls_Reject_CountINTAppels Entrant aux agents, rejeté.
AgentCalls_Failure_CountINTAppels Entrant aux agents, a échoué.
GroupTransfer_CountINTEntrant, transfert au groupe, total.
GroupTransfer_OK_CountINTEntrant transfert au groupe, OK. 
GroupTransfer_OK_Time_CallStart_CallConnect_TotalBIGINT
Status
colourRed
titleSUPPRIMÉ À PARTIR DE LA VERSION 3.33
GroupTransfer_OK_Time_CallStart_CallConnect_MaxINT
Status
colourRed
titleSUPPRIMÉ À PARTIR DE LA VERSION 3.33
GroupTransfer_OK_Time_CallConnect_CallEnd_TotalBIGINT
Status
colourRed
titleSUPPRIMÉ À PARTIR DE LA VERSION 3.33
GroupTransfer_OK_Time_CallConnect_CallEnd_MaxINT
Status
colourRed
titleSUPPRIMÉ À PARTIR DE LA VERSION 3.33
GroupTransfer_NoAnswer_CountINTEntrant transfert au groupe (assisté), pas de réponse.
GroupTransfer_Busy_CountINTEntrant transfert au groupe (assisté), occupé.
GroupTransfer_CallerHangup_CountINTEntrant transfert au groupe (assisté), l'appelant raccroche pendant le transfert.
GroupTransfer_Reject_CountINTEntrant transfert au groupe (assisté), rejeté.
GroupTransfer_Failure_CountINTEntrant transfert au groupe (assisté), a échoué.
AgentTransfer_CountINTEntrant transfert au agent, total.
AgentTransfer_OK_CountINTEntrant transfert au agent, OK. 
AgentTransfer_OK_Time_CallStart_CallConnect_TotalBIGINTEntrant transfert au agent, secondes totales de dtCallStart à dtCallConnect (à la jambe de groupe).
AgentTransfer_OK_Time_CallStart_CallConnect_MaxINTEntrant transfert au agent, secondes maximum de dtCallStart à dtCallConnect (à la jambe de groupe).
AgentTransfer_OK_Time_CallConnect_CallEnd_TotalBIGINTEntrant transfert au agent, OK, total des secondes de dtCallConnect à dtCallEnd (à la jambe de groupe).
AgentTransfer_OK_Time_CallConnect_CallEnd_MaxINTEntrant transfert au agent, OK, maximum de secondes entre dtCallConnect et dtCallEnd (pour la jambe de groupe).
AgentTransfer_NoAnswer_CountINTEntrant transfert au agent, pas de réponse.
AgentTransfer_Busy_CountINTEntrant transfert au agent, occupé.
AgentTransfer_CallerHangup_CountINTEntrant transfert au agent, l'appelant raccroche pendant le transfert.
AgentTransfer_Reject_CountINTEntrant transfert au agent, rejeté.
AgentTransfer_Failure_CountINTEntrant transfert au agent, a échoué.
NumberTransfer_CountINTEntrant transfert au numéro, total.
NumberTransfer_OK_CountINTEntrant transfert au numéro, OK. 
NumberTransfer_OK_Time_CallStart_CallConnect_TotalBIGINTEntrant transfert au numéro, OK, nombre total de secondes entre dtCallStart et dtCallConnect (pour la jambe de groupe).
NumberTransfer_OK_Time_CallStart_CallConnect_MaxINTEntrant transfert au numéro, OK, maximum de secondes entre dtCallStart et dtCallConnect (pour la jambe de groupe).
NumberTransfer_OK_Time_CallConnect_CallEnd_TotalBIGINTEntrant transfert au numéro, OK, total des secondes de dtCallConnect à dtCallEnd (à la jambe de groupe).
NumberTransfer_OK_Time_CallConnect_CallEnd_MaxINTEntrant transfert au numéro, OK, maximum de secondes entre dtCallConnect et dtCallEnd (pour la jambe de groupe).
NumberTransfer_NoAnswer_CountINTEntrant transfert au numéro, pas de réponse.
NumberTransfer_Busy_CountINTEntrant transfert au numéro, occupé.
NumberTransfer_CallerHangup_CountINTEntrant transfert au numéro, l'appelant raccroche pendant le transfert.
NumberTransfer_Reject_CountINTEntrant transfert au numéro, rejeté.
NumberTransfer_Failure_CountINTEntrant transfert au numéro, a échoué.
ClickToDial_CountINTSortant, cliquez pour composer, total.
ClickToDial_OK_CountINTSortie, cliquez pour composer, OK.
ClickToDial_OK_Time_CallStart_CallConnect_TotalINTSortie, cliquer pour composer, OK, total des secondes de dtCallStart à dtCallConnect (vers le segment de destination).
ClickToDial_OK_Time_CallStart_CallConnect_MaxINTSortie, cliquer pour composer, OK, max. secondes de dtCallStart à dtCallConnect (vers le segment de destination).
ClickToDial_OK_Time_CallConnect_CallEnd_TotalINTSortant, cliquez pour composer, OK, total des secondes de dtCallConnect à dtCallEnd (vers le segment de destination).
ClickToDial_OK_Time_CallConnect_CallEnd_MaxINTSortie, cliquer pour composer, OK, max. secondes de dtCallConnect à dtCallEnd (vers le segment de destination).
ClickToDial_NoAnswer_CountINTSortant, cliquez pour composer, pas de réponse.
ClickToDial_NoAnswer_Time_CallStart_CallEnd_TotalINTSortant, cliquez pour composer, OK, total des secondes de dtCallStart à dtCallEnd (vers le segment de destination).
ClickToDial_NoAnswer_Time_CallStart_CallEnd_MaxINTAu départ, cliquer pour composer, OK, max. secondes de dtCallStart à dtCallEnd (vers le segment de destination).
ClickToDial_Busy_CountINTSortant, cliquez pour composer, occupé.
ClickToDial_AgentHangup_CountINTSortant, clic pour composer, l'agent raccroche avant que l'appel ne soit connecté.
ClickToDial_Reject_CountINTSortant, cliquez pour composer, rejeté.
ClickToDial_Failure_CountINTSortant, clic pour composer, échec.
Dialler_CountINTSortant, de la campagne d'appels téléphoniques, total.
Dialler_OK_CountINTSortant, de la campagne d'appels téléphoniques, OK.
Dialler_OK_Time_CallStart_CallConnect_TotalINTSortant, de la campagne de numérotation, OK, total des secondes de dtCallStart à dtCallConnect (vers segment de destination).
Dialler_OK_Time_CallStart_CallConnect_MaxINTSortant de la campagne composeur, OK, secondes maximum entre dtCallStart et dtCallConnect (vers segment de destination).
Dialler_OK_Time_CallConnect_CallEnd_TotalINTSortant, de la campagne composeur, OK, secondes totales de dtCallConnect à dtCallEnd (vers segment de destination).
Dialler_OK_Time_CallConnect_CallEnd_MaxINTSortant, de la campagne composeur, OK, secondes maximum entre dtCallConnect et dtCallEnd (vers segment de destination).
Dialler_NoAnswer_CountINTAu départ, de la campagne d'appels téléphoniques, pas de réponse.
Dialler_NoAnswer_Time_CallStart_CallEnd_TotalINTSortant, de la campagne composeur, OK, secondes totales de dtCallStart à dtCallEnd (vers segment de destination).
Dialler_NoAnswer_Time_CallStart_CallEnd_MaxINTSortant, de la campagne composeur, OK, secondes maximum entre dtCallStart et dtCallEnd (vers segment de destination).
Dialler_Busy_CountINTSortant, de la campagne composeur, occupé.
Dialler_AgentHangup_CountINTSortant, de la campagne composeur, l'agent raccroche avant que l'appel ne soit connecté.
Dialler_Reject_CountINTSortant, de la campagne composeur, rejeté.
Dialler_Failure_CountINT