Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Content imported from a Scroll Translations translation file.
Sv translation
languageen

Description

This report shows individual calls, which were processed in the selected ACD groups. It shows, which agent was connected in a particular call. Per call several ACD groups can be shown. Per ACD group several rows might be shown for each call distributed to an agent.

Sample Execution (Input) → Sample Report (Output)

Columns

The following columns are provided.

Legend

Table

Alias

StatisticsPartA (See also Table Reference - StatisticsPartA (A) )

a

AcdStatisticsPartB (See also Table Reference - AcdStatisticsPartB (AcdB) )

acdb

StatisticsPartB (See also Table Reference - StatisticsPartB (B) )b
JTELWeb.ServiceNumbers
srn
JTELWeb.AcdGroups 
g
JTELWeb.Usersu
WINDOW w AS ( PARTITION BY a.ID ORDER BY acdb.ID, b.dtCallStart )
w


NameValueCriteria Used

Date / Time

The date the call was initiated 

a.dtCallStart

Start

The time the call was started 

a.dtCallStart

End

The time the call was ended

a.dtCallEnd

Caller

Telephone number of the caller

a.ANumber

Service Number

(ServiceNumbersName)

Field “Service Number” if available, otherwise “platform goal”.

srn.Name

Group

(FirstConnected_AcdGroupsName)

Name of the group followed by the group number in brackets.

FIRST_VALUE( CASE WHEN acdb.dtAgentConnect IS NOT NULL AND b.CONNRES = 1 THEN g.Name END ) 

OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) 

Prio

(First_nPriorityGroupStart)

The priority of the call on entry to the ACD group.

FIRST_VALUE( acdb.nPriorityGroupStart ) 

OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING )

Call Status

(FirstConnected_AcdGroupEndReason)

Status result of the call, e.g. "Agent Call (SHUP)", "Hangup Queue", "Hangup Announcement 1", etc. 

See also Value Reference - AcdGroupEndReasons

FIRST_VALUE( CASE WHEN acdb.dtAgentConnect IS NOT NULL AND b.CONNRES = 1 THEN st1.Content END ) 

OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING )


Serviced

(WasCallEverConnectedToAgent)

0 = no call
1 = successfully delivered to agent "Result: OK".
FIRST_VALUE( CASE WHEN acdb.dtAgentConnect IS NOT NULL AND b.CONNRES = 1 THEN 1 END ) 

OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) 

Call Seconds (CallSeconds)

Total inbound call time duration, from call connection to the ACD system until call hang up, in seconds.
TIMESTAMPDIFF( SECOND, a.dtCallConnect, a.dtCallEnd )

Ring Seconds

(FirstConnected_UsersRingTime)

The ringing duration of the call on the agent extension, in seconds.
FIRST_VALUE( CASE WHEN acdb.dtAgentConnect IS NOT NULL AND b.CONNRES = 1 THEN TIMESTAMPDIFF( SECOND, b.dtCallStart, b.dtCallConnect ) END 
OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) 

Agent Call Seconds

(Total_AgentCallSeconds)

The connection time with the agent, in seconds. The connection time is summed up over all agents, to account call forwarding.
SUM( TIMESTAMPDIFF( SECOND, b.dtCallConnect, b.dtCallEnd ) ) 

OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING )

Waiting Seconds

(WaitingTimeSeconds)

Total waiting time after entering the queue until call is answered by an agent or until the call is hung up, in seconds. The timestamp of entry into the queue of the first ACD group is used, regardless of whether the call is answered in another group.

CASE
 WHEN FirstQueued_dtQueueStart IS NOT NULL AND FirstConnected_dtAgentConnect IS NOT NULL THEN TIMESTAMPDIFF( SECOND, FirstQueued_dtQueueStart, FirstConnected_dtAgentConnect ) 

 WHEN FirstQueued_dtQueueStart IS NOT NULL THEN TIMESTAMPDIFF( SECOND, FirstQueued_dtQueueStart, dtCallEnd ) 

 ELSE 0

END AS WaitingTimeSeconds

Post Call Seconds

(Total_PostCallInterval)

Total duration of post-processing in seconds. The post-processing time is summed up over all agents, to account call forwarding.
SUM( b.PostCallInterval )

OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING )

Agent

Name of the agent who first answered the call (i.e. who greeted the caller). No matter if the agent is from another group (group overflow or search circle extension).u.Name


Sv translation
languagefr

Description

Ce rapport montre les appels individuels, qui ont été traités dans les groupes ACD sélectionnés. Il montre quel agent a été connecté dans un appel particulier. Par appel, plusieurs groupes ACD peuvent être affichés. Per ACD group, multiple lines can be displayed for each call distributed to an agent.

Exemple d'exécution (entrée) → Exemple de rapport (sortie)

Colonnes

Les colonnes suivantes sont fournies.

Légende

Tableau

Alias

StatisticsPartA (Voir aussi Tableau de référence - StatisticsPartA (A) )

a

AcdStatisticsPartB (Voir aussi Tableau de référence - AcdStatisticsPartB (AcdB) )

acdb

StatisticsPartB (Voir aussi Tableau de référence - StatisticsPartB (B) )b
JTELWeb.ServiceNumbers
srn
JTELWeb.AcdGroups 
g
JTELWeb.Usersu
WINDOW w AS ( PARTITION BY a.ID ORDER BY acdb.ID, b.dtCallStart )
w


NomValeurCritères utilisés

Date / Heure

La date à laquelle l'appel a été lancé 

a.dtCallStart

Démarrer

L'heure à laquelle l'appel a été lancé 

a.dtCallStart

Fin

L'heure à laquelle l'appel a été terminé

a.dtCallEnd

Appelant

Numéro de téléphone de l'appelant

a.ANumber

Numéro de service

(ServiceNumbersName)

Champ “Numéro de service” si disponible, sinon “objectif de la plate-forme”.

srn.Name

Groupe

(FirstConnected_AcdGroupsName)

Nom du groupe suivi du numéro de groupe entre parenthèses

FIRST_VALUE( CASE WHEN acdb.dtAgentConnect IS NOT NULL AND b.CONNRES = 1 THEN g.Name END ) 

OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) 

Prio

(First_nPriorityGroupStart)

La priorité de l'appel à l'entrée dans le groupe ACD

FIRST_VALUE( acdb.nPriorityGroupStart ) 

OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING )

Statut de l'appel

(FirstConnected_AcdGroupEndReason)

Résultat de l'état de l'appel, par ex. "Agent Call (SHUP)", "Hangup Queue", "Hangup Announcement 1", etc. 

Voir aussi Valeur de référence - AcdGroupEndReasons

FIRST_VALUE( CASE WHEN acdb.dtAgentConnect IS NOT NULL AND b.CONNRES = 1 THEN st1.Content END ) 

OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING )


Desservi :

(WasCallEverConnectedToAgent)

0 = aucun appel
1 = délivré avec succès à l'agent "Resultat: OK".
FIRST_VALUE( CASE WHEN acdb.dtAgentConnect IS NOT NULL AND b.CONNRES = 1 THEN 1 END ) 

OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) 

Secondes d'appel (CallSeconds)

Durée totale de l'appel entrant, depuis la connexion de l'appel au système ACD jusqu'à son raccrochage, en secondes.
TIMESTAMPDIFF( SECOND, a.dtCallConnect, a.dtCallEnd )

Secondes de sonnerie

(FirstConnected_UsersRingTime)

La durée de la sonnerie de l'appel sur l'extension de l'agent, en secondes.
FIRST_VALUE( CASE WHEN acdb.dtAgentConnect IS NOT NULL AND b.CONNRES = 1 THEN TIMESTAMPDIFF( SECOND, b.dtCallStart, b.dtCallConnect ) END 
OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) 

Secondes d'appel de l'agent

(Total_AgentCallSeconds)

Le temps de connexion avec l'agent en secondes. Le temps de connexion est additionné sur tous les agents, pour tenir compte du renvoi d'appel.
SUM( TIMESTAMPDIFF( SECOND, b.dtCallConnect, b.dtCallEnd ) ) 

OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING )

Secondes d'attente

(WaitingTimeSeconds)

Temps d'attente Total après l'entrée dans la file d'attente jusqu'à ce qu'un agent réponde à l'appel ou que l'appel soit raccroché, en secondes. L'horodatage de l'entrée dans la file d'attente du premier groupe ACD est utilisé, que l'appel soit répondu ou non dans un autre groupe.

CASE
 WHEN FirstQueued_dtQueueStart IS NOT NULL AND FirstConnected_dtAgentConnect IS NOT NULL THEN TIMESTAMPDIFF( SECOND, FirstQueued_dtQueueStart, FirstConnected_dtAgentConnect ) 

 WHEN FirstQueued_dtQueueStart IS NOT NULL THEN TIMESTAMPDIFF( SECOND, FirstQueued_dtQueueStart, dtCallEnd ) 

 ELSE 0

END AS WaitingTimeSeconds

Secondes de l'Après Appel

(Total_PostCallInterval)

Durée totale du post-traitement en secondes. Le temps de post-traitement est additionné sur tous les agents, pour tenir compte du renvoi d'appel.
SUM( b.PostCallInterval )

OVER ( w RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING )

Agent

Nom de l'agent qui a répondu en premier à l'appel (c'est-à-dire qui a accueilli l'appelant). Peu importe que l'agent appartienne à un autre groupe (débordement de groupe ou extension du cercle de recherche).u.Name