Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Symposium, Get Digits with lookup.

Status
Not open for further replies.

Jay2003

Programmer
Feb 26, 2003
147
0
0
GB
Hi,

I am trying to find some documentation on using a get digits function with SCCS4.0,

/*
OPEN VOICE SESSION
PLAY PROMPT VOICE SEGMENT c_Main_gv
COLLECT 1 DIGITS INTO ESP_SELECTION1_cv
END VOICE SESSION
*/

This bit is ok, It is the actual variable requirements that I need and the canned documents are lacking on this side.

Any help would be appreciated.

Jason
 
Below is a copy of my code. Your missing ivrVoiceSessionDN which is a ACD type variable.

OPEN VOICE SESSION ivrVoiceSessionDN
IF cv_Counter > 100
THEN PLAY PROMPT VOICE SEGMENT vs_EnterDigits_F
ELSE PLAY PROMPT VOICE SEGMENT vs_EnterDigits
END IF

COLLECT 1 DIGITS INTO cv_Ivr_Pick1
WITH TERMINATING CHARACTER #

END VOICE SESSION

WAIT 1

WHERE cv_Ivr_Pick1 EQUALS
VALUE 1: EXECUTE IVR_Status_Msg
VALUE 2: EXECUTE Goto_MainA
DEFAULT: EXECUTE Goto_MainA
END WHERE
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top