I was monitoring one group and noticed that when all agents are login to the queue but not ready, I will continously repeat the Busy RAN message and the music loop. The call did not route to the desired DN (4805).
How do I
1. change the script so that after few 10-20 seconds when all agents are in NOT ready it will route to CDN 4805 ( or be queued to skillset Plus_General)
2. Change the script so that the hold time will only be 3 minutes, then route calls to 4805.
Thank you for your help.
Please refer to the current script as described below:
/* This Script is for TM_CR, calls via Meridian Mail menu (CDN 4832). Callers are Queued to the TM_CR
skillset with Priority 2. */
IF (OUT OF SERVICE TM_CR) THEN
ROUTE CALL 4805
END IF
IF (DAY OF WEEK=Monday..Friday) AND (TIME OF
DAY=M_F_HoursA)
THEN EXECUTE Open_Skillset
END IF
EXECUTE Nite
SECTION Open_Skillset
IF NOT OUT OF SERVICE TM_CR
THEN QUEUE TO SKILLSET TM_CR WITH PRIORITY 2
WAIT 2
END IF
IF (EXPECTED WAIT TIME TM_CR = 0..179) THEN
GIVE RAN Busy_Ran1
ELSE
IF (EXPECTED WAIT TIME TM_CR = 180..299) THEN
GIVE RAN Wait3_Ran
ELSE
GIVE RAN Wait5_Ran
END IF
END IF
GIVE MUSIC Music_Source
IF NOT QUEUED THEN
ROUTE CALL 4805
END IF
SECTION Hold_In_Queue
WAIT Delay_IntervalA
IF NOT QUEUED THEN
ROUTE CALL 4805
END IF
GIVE RAN Busy_Ran1
Delay_IntervalA ASSIGNED Delay_IntervalA + 10
EXECUTE Hold_In_Queue
SECTION Nite
GIVE RAN Closed_Ran
DISCONNECT
How do I
1. change the script so that after few 10-20 seconds when all agents are in NOT ready it will route to CDN 4805 ( or be queued to skillset Plus_General)
2. Change the script so that the hold time will only be 3 minutes, then route calls to 4805.
Thank you for your help.
Please refer to the current script as described below:
/* This Script is for TM_CR, calls via Meridian Mail menu (CDN 4832). Callers are Queued to the TM_CR
skillset with Priority 2. */
IF (OUT OF SERVICE TM_CR) THEN
ROUTE CALL 4805
END IF
IF (DAY OF WEEK=Monday..Friday) AND (TIME OF
DAY=M_F_HoursA)
THEN EXECUTE Open_Skillset
END IF
EXECUTE Nite
SECTION Open_Skillset
IF NOT OUT OF SERVICE TM_CR
THEN QUEUE TO SKILLSET TM_CR WITH PRIORITY 2
WAIT 2
END IF
IF (EXPECTED WAIT TIME TM_CR = 0..179) THEN
GIVE RAN Busy_Ran1
ELSE
IF (EXPECTED WAIT TIME TM_CR = 180..299) THEN
GIVE RAN Wait3_Ran
ELSE
GIVE RAN Wait5_Ran
END IF
END IF
GIVE MUSIC Music_Source
IF NOT QUEUED THEN
ROUTE CALL 4805
END IF
SECTION Hold_In_Queue
WAIT Delay_IntervalA
IF NOT QUEUED THEN
ROUTE CALL 4805
END IF
GIVE RAN Busy_Ran1
Delay_IntervalA ASSIGNED Delay_IntervalA + 10
EXECUTE Hold_In_Queue
SECTION Nite
GIVE RAN Closed_Ran
DISCONNECT