brewerdude
IS-IT--Management
Take a look at this snippet of one of my scripts:
After validating, Symposium tells me the following:
Line 93: Suggestion: QUEUE TO SKILLSET - You should use the OUT OF SERVICE <skillset> intrinsic to test the skillset queue before the QUEUE TO SKILLSET command. This can be done by inserting IF NOT OUT OF SERVICE <skillset> THEN before the QUEUE TO SKILLSET command.
Line 107: Critical error: EXECUTE - Loops must have an exit so that they will not loop indefinitely if the call is not queued. This can be done by inserting a test of the QUEUED intrinsic (except when using NACD) or AGE OF CALL intrinsic (with NACD), and jump out of the loop if the call is not queued.
Why am I getting these, haven't I satisfied the those requirements in my script??
Code:
GIVE CONTROLLED BROADCAST ANNOUNCEMENT PLAY PROMPT VOICE SEGMENT First_RAN_Broadcast_gv
SECTION OnHoldLoop
WAIT 15
/********************************************************************/
/**** THIS SECTION HERE CHECKS TO SEE IF ALL AGENTS LOGGED OUT ****/
/**** WHILE THE CALL WAS ON HOLD, AND REQUEUES THE CALL IF ****/
/**** SOMEHOW IT DIDN'T GET QUEUED PROPERLY ****/
/********************************************************************/
IF NOT QUEUED OR NOT OUT OF SERVICE Skillset_cv THEN
QUEUE TO SKILLSET Skillset_cv
WAIT 2
ELSE
EXECUTE SCRIPT eCustomer_Script
END IF
IF AGE OF CALL >= 130 THEN
EXECUTE SCRIPT eCustomer_Script
END IF
WAIT 30
GIVE CONTROLLED BROADCAST ANNOUNCEMENT PLAY PROMPT VOICE SEGMENT Second_RAN_Broadcast_gv
EXECUTE OnHoldLoop
After validating, Symposium tells me the following:
Line 93: Suggestion: QUEUE TO SKILLSET - You should use the OUT OF SERVICE <skillset> intrinsic to test the skillset queue before the QUEUE TO SKILLSET command. This can be done by inserting IF NOT OUT OF SERVICE <skillset> THEN before the QUEUE TO SKILLSET command.
Line 107: Critical error: EXECUTE - Loops must have an exit so that they will not loop indefinitely if the call is not queued. This can be done by inserting a test of the QUEUED intrinsic (except when using NACD) or AGE OF CALL intrinsic (with NACD), and jump out of the loop if the call is not queued.
Why am I getting these, haven't I satisfied the those requirements in my script??