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

Vectoring 2

Status
Not open for further replies.

RTGDFM

Technical User
Oct 29, 2008
98
GB
I've not had to touch CM for a while so I'm a bit stuck.

Basically we have a customer with a vector that collects digits etc to route to the different departments but I cant remember what step would need to be inserted so it routes the call if they don't press any digits.

ie press 1 for sales 2 for support and hold for reception

Any help would be really appreciated.


ACSS SMEC
APSS SMEC
ACA IP Telephoney Implement
 
One way is that the last step just routes to the no digit option with a stop statement after that.


Code:
01
02 wait-time    2   secs hearing silence
03 collect      1    digits after announcement 68742    for none
04 route-to     number 62779            with cov n if digit           =  1
05 route-to     number 62778            with cov n if digit           =  2
06 route-to     number 62778            with cov n if unconditionally
07 stop
08
 
another way is "if digit = none", but you'll need to do this with goto (route-to doesn't have an option for "none")

 
Thanks guys just what I needed.

ACSS SMEC
APSS SMEC
ACA IP Telephoney Implement
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top