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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Scripting for routing calls

Status
Not open for further replies.

Momozone

IS-IT--Management
Dec 2, 2004
103
IE
Can someone give me an example of a script that will
ask the caller to push 1 for sales 2 for accounts?

Would be very greatful!
 
Hi,
You can use something like this:

OPEN VOICE SESSION 4567 /* IVR ACD DN*/
PLAY PROMPT VOICE SEGMENT SalesOrAccounts
COLLECT 1 DIGITS INTO sor_digits_var /*DN variable,call */
INTER DIGIT TIMER 5
END VOICE SESSION

WHERE OBK_digits_var EQUALS

VALUE 1: QUEUE TO SKILLSET sales
VALUE 2: QUEUE TO SKILLSET accounts
DEFAULT: QUEUE TO SKILLSET sales /* no digit pressed*/

END WHERE

johnjose
 
Thanks - Worked a treat!

MoMoZoNe
cmaher@momentum-marketing.ie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top