Genesys CTI User Forum
Genesys CTI User Forum => Genesys CTI Technical Discussion => Topic started by: noyan on January 08, 2008, 07:30:21 PM
-
Hi,
I need help.
i would like to have my agent's name highlighted in red if their status is not ready/after call work etc.. for x number of minutes. how can i do this?
[b]Note:[/b] I tried the method in the old forums but I could not be successful. It is very difficult for me because I don' t know any programming language.
Thanks
-
Note: The following script will color the statistic, not the person's name. You can set threshold on names, however you have to do it through the object pane, not the view (the view contains the stats you are looking for)
Using the Threshold wizard, create the following script:
if Threshold.StatValue >180 then
Threshold.Result = true
end if
So in seconds, if the StatValue is greater then 180, the threshold is true.
Then through the action wizardm create an action with the following script:
CCPulseNotifier.SetColor( Color.Red )
Then right click the main label in the "Tree" view in CCPulse, Select Set Threshold and select the Stat you want to apply the threshold to. For this to work, you need to have your "view" monitoring the stats you want to trigger on.
Once you select the stat, another box will open where you select the threshold and action to apply.
-
Thank you for your requst,
I tried your suggest
( if Threshold.StatValue >180 then
Threshold.Result = true
end if
but I could not be succesful.
So I found different threshold from different forum.
if Threshold.StatValue = 22 then
Threshold.ActionDelay = 120
Threshold.Result = true
else
Threshold.Result = false
end if
22 mean that agent is incallbound. İf we change it to 23 it means agent is not ready..Something like that :)
Thank you very much for your interest..
-
Sorry didn't realize you were pegging off the agent status. You are correct, the threshold above would only work for the "Total Time" the agent was in ACW or AUX.
Glad you figured out what you needed, if you search hard enough, you should be able to answer almost anything, even the meaning of life :)
-
Hello,
It's possible to set two threshold on a SDNA status ?
for exemple I want if SDNAAfterCallWork great then 10sec setColor in orange (agent status) and if great then 30sec set in red (agent status).
Thx for your help
-
Yes it is possible
-
Can you share how to do that?