Hi everyone. I hope someone can help with this question.
I have an application that wants to add an option 4 to have a message played to customers affected by a certain scenario. All the scripting existed. I added the BOLD section. When I try to save, I get a 'Syntax Error or Unsupported Command' error.
I'm reaching into my memory banks as I took the course a year ago and haven't touched it since. Any help would be appreciated!
IF thisIsAFrenchCall_cv = FALSE THEN
OPEN VOICE SESSION withTheCallPilotAccessQueue_gv
PLAY PROMPT
WITH LANGUAGE ENGLISH
VOICE SEGMENT MagazinesMainMenu_vs
COLLECT 1 DIGITS INTO theInitialCollectedDigit_cv
END VOICE SESSION
WHERE theInitialCollectedDigit_cv EQUALS
VALUE 1: ASSIGN VO_MagazinesSalesEng_sk TO withTheSkillset_cv
VALUE 2: ASSIGN VO_MagazinesCSEng_sk TO withTheSkillset_cv
VALUE 3: ASSIGN VO_MagazinesAREng_sk TO withTheSkillset_cv
VALUE 4: PLAY PROMPT
WITH LANGUAGE ENGLISH
VOICE SEGMENT MagazinesTempOption4_vs
VOICE SEGMENT disconnectAnn_vs
DEFAULT: ASSIGN VO_MagazinesSalesEng_sk TO withTheSkillset_cv
END WHERE
I have an application that wants to add an option 4 to have a message played to customers affected by a certain scenario. All the scripting existed. I added the BOLD section. When I try to save, I get a 'Syntax Error or Unsupported Command' error.
I'm reaching into my memory banks as I took the course a year ago and haven't touched it since. Any help would be appreciated!
IF thisIsAFrenchCall_cv = FALSE THEN
OPEN VOICE SESSION withTheCallPilotAccessQueue_gv
PLAY PROMPT
WITH LANGUAGE ENGLISH
VOICE SEGMENT MagazinesMainMenu_vs
COLLECT 1 DIGITS INTO theInitialCollectedDigit_cv
END VOICE SESSION
WHERE theInitialCollectedDigit_cv EQUALS
VALUE 1: ASSIGN VO_MagazinesSalesEng_sk TO withTheSkillset_cv
VALUE 2: ASSIGN VO_MagazinesCSEng_sk TO withTheSkillset_cv
VALUE 3: ASSIGN VO_MagazinesAREng_sk TO withTheSkillset_cv
VALUE 4: PLAY PROMPT
WITH LANGUAGE ENGLISH
VOICE SEGMENT MagazinesTempOption4_vs
VOICE SEGMENT disconnectAnn_vs
DEFAULT: ASSIGN VO_MagazinesSalesEng_sk TO withTheSkillset_cv
END WHERE