" /> Agent Status Duration in CCPulse - Genesys CTI User Forum

Author Topic: Agent Status Duration in CCPulse  (Read 4793 times)

Offline RMS81

  • Newbie
  • *
  • Posts: 11
  • Karma: 0
Agent Status Duration in CCPulse
« on: November 22, 2007, 04:01:16 PM »
Advertisement
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
« Last Edit: November 23, 2007, 10:27:22 AM by RMS81 »

Offline oratan

  • Newbie
  • *
  • Posts: 21
  • Karma: 0
Re: Agent Status Duration in CCPulse
« Reply #1 on: November 24, 2007, 05:21:14 PM »
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

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: Agent Status Duration in CCPulse
« Reply #2 on: November 24, 2007, 07:00:46 PM »
It's even on CCPulse help

Offline RMS81

  • Newbie
  • *
  • Posts: 11
  • Karma: 0
Re: Agent Status Duration in CCPulse
« Reply #3 on: November 25, 2007, 02:26:25 PM »
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

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: Agent Status Duration in CCPulse
« Reply #4 on: November 25, 2007, 09:57:10 PM »
You better do a new column for Outbound Status (CurrentTime) and do the threshold there.

Offline RMS81

  • Newbie
  • *
  • Posts: 11
  • Karma: 0
Re: Agent Status Duration in CCPulse
« Reply #5 on: November 26, 2007, 04:47:29 PM »
OK. Thats probably what i will do.

Tks