Hi
I am doing some testing to implement a age of call check in one of our skillsets in order to overflow to another.
It seems the script is ignoring my IF statement for AGE OF CALL wondering if someone could give some insight. I swear it worked the first time I tested it but now I'm not sure.
We have a three site networked enviroment and the overflow I am attempting is from a local skillset to a networked skillset between three sites. If I queue a call to the network skillset it works no matter which site I have an agent logged into.
IF NOT OUT OF SERVICE Test_App_sk THEN
QUEUE TO SKILLSET Test_App_sk
WAIT 2
ELSE
EXECUTE CLOSED
END IF
IF AGE OF CALL >120 AND NOT OUT OF SERVICE Test_Overflow_sk THEN
QUEUE TO NETWORK SKILLSET Test_Overflow_sk
WAIT 2
END IF
GIVE RAN 42
GIVE MUSIC music_gv
WAIT wait_timer_gv <-- This wait timer is set to 7200 seconds -->
SECTION Test_LOOP
IF NOT QUEUED THEN
IF NOT OUT OF SERVICE Test_App_sk THEN
QUEUE TO SKILLSET Test_App_sk
WAIT 2
ELSE
EXECUTE CLOSED
END IF
END IF
GIVE RAN 42
WAIT wait_timer_gv
EXECUTE Test_LOOP
SECTION CLOSED
ROUTE CALL closed_msg_acdn_gv
I am doing some testing to implement a age of call check in one of our skillsets in order to overflow to another.
It seems the script is ignoring my IF statement for AGE OF CALL wondering if someone could give some insight. I swear it worked the first time I tested it but now I'm not sure.
We have a three site networked enviroment and the overflow I am attempting is from a local skillset to a networked skillset between three sites. If I queue a call to the network skillset it works no matter which site I have an agent logged into.
IF NOT OUT OF SERVICE Test_App_sk THEN
QUEUE TO SKILLSET Test_App_sk
WAIT 2
ELSE
EXECUTE CLOSED
END IF
IF AGE OF CALL >120 AND NOT OUT OF SERVICE Test_Overflow_sk THEN
QUEUE TO NETWORK SKILLSET Test_Overflow_sk
WAIT 2
END IF
GIVE RAN 42
GIVE MUSIC music_gv
WAIT wait_timer_gv <-- This wait timer is set to 7200 seconds -->
SECTION Test_LOOP
IF NOT QUEUED THEN
IF NOT OUT OF SERVICE Test_App_sk THEN
QUEUE TO SKILLSET Test_App_sk
WAIT 2
ELSE
EXECUTE CLOSED
END IF
END IF
GIVE RAN 42
WAIT wait_timer_gv
EXECUTE Test_LOOP
SECTION CLOSED
ROUTE CALL closed_msg_acdn_gv