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!

How to insert digit(s) in vector

Status
Not open for further replies.

telecomadmin12

Technical User
Apr 27, 2012
406
0
16
DE
I am looking for a way to insert specific digits in front of digits entered in an auto attendant menu (vector with collect step). The call will go out a trunk.
 
you want to use variables and concatenate. Something like this which will insert a 9 on the left of what the user entered.

Code:
collect 11 digits after ann 1234 for A
set A = A CATL 9
route-to number A with cov n if unconditionally
 
Unfortunately I don't have Vectoring (3.0 Enhanced) licensed.

Any other way to accomplish this?

CM3.0
 
You just need to use route-to step to send it to whatever digits you want:
Code:
01 collect      1    digits after announcement 10123    for none
02 goto step    8             if digits           =      1
03 goto step    9             if digits           =      2
04 goto step    10            if digits           =      3
05 goto step    1             if unconditionally
06 wait-time    2   secs hearing ringback
07 stop
08 route-to     number 9011111          with cov n if unconditionally
09 route-to     number 9022222          with cov n if unconditionally
10 route-to     number 9033333          with cov n if unconditionally
11 stop
 
Yes, but I want to route to dialed digits but insert digit(s)in front of that.
The user enters the digits the call will be routed to.
 
Can you give an example of the digits you are collecting and the number you want to route to?
You could add the digit string in AAR routing.
 
A user might enter digits 483541436768 at the collect step.
Then I want to insert digits 9011 to make it 9011483541436768.
 
If they are going to enter all those digits can they not just dial the whole number?
Sounds like you are trying to use a vector to do Automatic Route Selection.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top