" /> CC pulse Thresholds - Genesys CTI User Forum

Author Topic: CC pulse Thresholds  (Read 2763 times)

Offline savio_nz

  • Newbie
  • *
  • Posts: 1
  • Karma: 0
CC pulse Thresholds
« on: June 24, 2015, 11:18:10 PM »
Advertisement
hi..

how do i create a threshold for SDNA = after call work

0-90 seconds - colour green
91-299 secsonds -  colour yellow
300 seconds and over - colour red

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: CC pulse Thresholds
« Reply #1 on: June 25, 2015, 02:14:05 AM »
Search forum please

Enviado de meu C6602 usando Tapatalk


Offline shiningravi18

  • Newbie
  • *
  • Posts: 9
  • Karma: 0
Re: CC pulse Thresholds
« Reply #2 on: July 09, 2015, 08:48:18 AM »
Hi,

Use following Query to create threshold for ACW, where you can change values as per your request against 0 & 60


if Threshold.StatValue  > 0 and Threshold.StatValue < 60 then
  Threshold.Result = true
else
  Threshold.Result = false
end if

[b]and for color kindly user following query to create Action Wizard[/b]

' Available colors
'==============
'Blue, Green, Red, White, Black, Gray, DarkGray, DarkRed,
'Yellow, DarkYellow, DarkGreen, Cyan, DarkCyan, DarkBlue,
'Magenta, DarkMagenta.
'
'All accessed as Color.colorname

' Set a predefined color:
CCPulseNotifier.SetColor( Color.Red )

' Or...

'2.  Set a custom color:
' CCPulseNotifier.SetColor( RGB( 7, 77, 177 ) )