I have added a Voice Segment to the following script. I created a vm_vs which says "if you'd like to leave a message press 1" and then I added vm_choice_cv which transfers to voicemail if they press one. I pasted in the Voice Segment and Collect Digits statement into the script, but I still don't hear any of my changes when I call. The script WAS validated so I assumed that my variables were done correctly. Is there anything I could be missing?
Thanks TJ See below:
/* IntMed Script
52755 CDN
52751 CDN for phantom to AnsService
Wait_2_gv RAN 3 RDB 43
Music_gv Music RDB 30
*/
IF OUT OF SERVICE IntMed_sk THEN
ROUTE CALL 52751
ELSE
QUEUE TO SKILLSET IntMed_sk
WAIT 2
END IF
GIVE RAN Wait_2_gv
GIVE MUSIC Music_gv
OPEN VOICE SESSION
PLAY PROMPT VOICE SEGMENT vm_vs
COLLECT 1 DIGITS INTO vm_choice_cv INTER DIGIT TIMER 2
END VOICE SESSION
WHERE vm_choice_cv EQUALS
VALUE 1: ROUTE CALL 12435
DEFAULT: EXECUTE Wait_Loop
END WHERE
Section Wait_Loop
WAIT 30
GIVE RAN Wait_2_gv
IF NOT QUEUED THEN
IF OUT OF SERVICE IntMed_sk THEN
ROUTE CALL 52751
ELSE
QUEUE TO SKILLSET IntMed_sk
Wait 2
END IF
END IF
/*IF TIME OF DAY = TOD_INT_gv THEN
ROUTE CALL 52751
END IF */