You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Description

This report contains itemised data for outbound calls made via the selected dialler campaigns automatically (prview mode) or manually (CTI / manual mode) within a particular time slice.

Sample Execution (Input) → Sample Report (Output)

This report is optimised for the following output formats: PDFHTML

Column

Legend

Table

Alias

StatisticsPartO (See also Table Reference - StatisticsPartO )

o

StatisticsPartB (See also Table Reference - StatisticsPartB (B) )

b

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

a

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

acdb

NameDesciptionCriteria Used

Start

The time stamp when the dialer outbound call where initiated either automaticaly (Preview Mode) or manually (CTI / Manual Mode).

Ringing

The time stamp when the call start ringing in the destination extension.

Connected

The time stamp when the call was successfully connected to the destination. Empty if the connnection attempt fails for any reason.

End

The time stamp when the outbound call ended.

Caller Number

The phone number of the called contact person.

Calling Number

The phone number of the agent that has initiated the call.

Ringing Time

The ringing time duration in the destination extension.

WHEN a.CONNRES = 1 THEN (a.dtCallConnect - a.dtCallAlert)
WHEN a.CONNRES = 2 THEN (a.dtCallEnd -  a.dtCallAlert)

See also Value Reference - CONNRES

Call Time(s)

The total call time duration.

WHEN a.CONNRES = 1 THEN (a.dtCallEnd - a.dtCallConnect)

See also Value Reference - CONNRES

Connected

1 if the call was successfully connected to the destionation Else 0

WHEN a.CONNRES = 1 THEN 1 ELSE 0

See also Value Reference - CONNRES

Busy

1 if the called destination was busy. Else 0

IF a.CONNRES = 3 THEN 1 ELSE 0

See also Value Reference - CONNRES

No Ans.

1 if the called destination did not answer. Else 0

IF a.CONNRES = 2 THEN 1 ELSE 0

See also Value Reference - CONNRES

Stopped

1 if the outdial was aborted. Else 0

IF a.CONNRES = 4 THEN 1 ELSE 0

See also Value Reference - CONNRES

Invalid

1 if the called destination number was either Unallocated (unassigned) or the destination rejected the call of the destinaion number format is invalid. Else 0

IF a.CauseCodesID IN ( 1, 21, 28) THEN 1 ELSE 0

See also Value Reference - CauseCodes

Other

1 if the call ended for any other reason. Else 0

IF a.CONNRES NOT IN (1, 2, 3, 4)  AND a.CauseCodesID NOT IN ( 1, 21, 28) THEN 1 ELSE 0

See also Value Reference - CONNRES and Value Reference - CauseCodes

Service Number

Name of the service number through which the call was made.

Dialler Campaign

Name of the dialler campaign in which the call was initiated.

Contact

Name of the dialler contact that was called.

User Data

The user data of the dialler contact that was called.

Agent

Name of the agent who initiated the dialer campaign call.

Result Code

Name of the result code set at the end of this call by the agent.

Done

Either 1 if the type of the result code set is "Done" or 0 if another type was chosend instead or empty it no result code was set.

WHEN DiallerContactsHistory.DiallerResultCodesTypesID IS NULL THEN NULL
WHEN DiallerContactsHistory.DiallerResultCodesTypesID = 1 THEN 1
ELSE 0

Aborted

Either 1 if the type of the result code set is "Aborted" or 0 if another type was chosend instead or empty it no result code was set.WHEN DiallerContactsHistory.DiallerResultCodesTypesID IS NULL THEN NULL
WHEN DiallerContactsHistory.DiallerResultCodesTypesID = 2 THEN 1
ELSE 0

Appointment

Either 1 if the type of the result code set is "Appointment" or 0 if another type was chosend instead or empty it no result code was set.WHEN DiallerContactsHistory.DiallerResultCodesTypesID IS NULL THEN NULL
WHEN DiallerContactsHistory.DiallerResultCodesTypesID = 3 THEN 1
ELSE 0

Delay

Either 1 if the type of the result code set is "Delay" or 0 if another type was chosend instead or empty it no result code was set.WHEN DiallerContactsHistory.DiallerResultCodesTypesID IS NULL THEN NULL
WHEN DiallerContactsHistory.DiallerResultCodesTypesID = 4 THEN 1
ELSE 0


  • No labels