Agent Status Duration in CCPulse

Hi,

I have a column in a view with the agent current status and the duration of the status. Something like this:

CallOutbound(0:15:13)

I would like to use a threshold so that when the duration is greater then… the column changes color.

Can anyone help?

Tks

Hi RMS81,

Did you have a “CCPulse+ Administrator’s Guide” ?
please see a chapter “Thresholds ans Actions” .

■GreaterThanLimit
if ( Threshold.StatValue > 10) then
Threshold.Result = True
end if

■SetColor
CCPulseNotifier.SetColor( Color.DarkRed )
CCPulseNotifier.SetColor( RGB( 7, 77, 177 ) )

Did you try these combinations?
The basic part is all right in this.

best regard,
oratan

2 Likes

It’s even on CCPulse help

1 Like

I´ve tried that, but in this case the stat value whould by something like this Threshold.StatValue = StatAction.SDNACallOutbound, becouse we are talking about the column that has the agent current state and also the duration of that state. So I can set a thershold for the agent current state bau can´t set one to the duration.

Tks

You better do a new column for Outbound Status (CurrentTime) and do the threshold there.

1 Like

OK. Thats probably what i will do.

Tks

1 Like