Milesprower
Programmer
I apologize in advance as I know there has been a lot of good info on Expected Wait Time (EWT) in this forum, but the search function for the Symposium forum has not been working for me for some time (I have sent messages to Tek-Tips, but have not received a response).
I have a customer with small to large skillsets (10-30 agents) that wants to implement delay in queue announcements based on EWT. They received feedback from Nortel to try Average Speed of Answer (ASA) when the number of agents/call traffic is low instead of EWT.
So, here's my question(s): Has anyone used ASA for small skillsets? What would be the cutoff (number of agents/call activity)? When would you switch over to EWT (call traffic/ agents logged in threshold)?
I'm thinking the logic would be something like this:
ASSIGN 0 TO delay_cv
/* choose delay value based on agent/call traffic */
IF LOGGED AGENT COUNT < agent_threshold_count_gv OR
QUEUED CALL COUNT skillset < queue_threshold_count_gv
THEN
ASSIGN AVERAGE SPEED ANSWER skillset TO delay_cv
ELSE
ASSIGN EXPECTED WAIT TIME skillset TO delay_cv
END IF
WHERE delay_cv EQUALS
VALUE 0..60: GIVE RAN short_ann_gv
VALUE 61..180: GIVE RAN med_ann_gv
VALUE 181..600: GIVE RAN long_ann_gv
DEFAULT: GIVE RAN long_ann_gv
ENE WHERE
I have a customer with small to large skillsets (10-30 agents) that wants to implement delay in queue announcements based on EWT. They received feedback from Nortel to try Average Speed of Answer (ASA) when the number of agents/call traffic is low instead of EWT.
So, here's my question(s): Has anyone used ASA for small skillsets? What would be the cutoff (number of agents/call activity)? When would you switch over to EWT (call traffic/ agents logged in threshold)?
I'm thinking the logic would be something like this:
ASSIGN 0 TO delay_cv
/* choose delay value based on agent/call traffic */
IF LOGGED AGENT COUNT < agent_threshold_count_gv OR
QUEUED CALL COUNT skillset < queue_threshold_count_gv
THEN
ASSIGN AVERAGE SPEED ANSWER skillset TO delay_cv
ELSE
ASSIGN EXPECTED WAIT TIME skillset TO delay_cv
END IF
WHERE delay_cv EQUALS
VALUE 0..60: GIVE RAN short_ann_gv
VALUE 61..180: GIVE RAN med_ann_gv
VALUE 181..600: GIVE RAN long_ann_gv
DEFAULT: GIVE RAN long_ann_gv
ENE WHERE