Agent-Status Colour when Ready

Hello everyone,

I have a question for any who can answer.
I am a new user of CCPulse and don’t know how to change some things so i can do my job better and easier.

The threshold below is true exactly when an agent is ready for next call-his status colour is green at this time.

' Threshold will be true when agent reach exact ' status Ready

if Threshold.StatValue = StatAction.SDNAWaitForNextCall then
Threshold.Result = true
end if

I want to modify or make a new threshold, so when an agent is ready for next call for over than 2-3 minutes, the status colour changes to a new one and only when the agent is ready.
Can i do that in some way?

Thanks in advanse and excuse me for my English.

You just need to add an action delay, for the correct number of seconds 120 or 180.

if Threshold.StatValue = StatAction.SDNAWaitForNextCall then
Threshold.ActionDelay=120
Threshold.Result = true
end if

Thanks Steve.
I’ll check it today.

1 Like

Well it’s working, but not exactly how i want it.
When the agent is ready and for 2-3 minutes(the delay time) there is no Color for his status.
After the delay time pass his status color change.
Can i have 2 colors react to agent’s ready time?

Once again excuse me for my English.

2 Likes

Just combine your original threshold with mine -

if Threshold.StatValue = StatAction.SDNAWaitForNextCall then
Threshold.Result = true
end if

if Threshold.StatValue = StatAction.SDNAWaitForNextCall then
Threshold.ActionDelay=120
Threshold.Result = true
end if

Then allocate a different colour to each.