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

Call vectoring - enter your partys extension - HELP!

Status
Not open for further replies.
Nov 22, 2013
600
US
Interesting problem.
In my main vector you press 1, that then brings you to this vector to enter your partys extension, while it is all working the one problem I have is that if you want to dial an extension, 2710 for example, if you just enter 2 and pause (because you dont know your extension or have to look to see what you are dialing) it will timeout after a few seconds and force to extension 2000 (extension 2000 is one of my hunt groups it should not go here) if you press 3 and pause it will force to extension 3000, for and pause it will dial 4000. I would like to know if it is possible to do some sort of unconditional timeout, like if you enter anything less than 4 digits it will start the vector over again at step 3? Thanks for your help.

CALL VECTOR

Number: 50 Name: Main-Extensions
Multimedia? n Attendant Vectoring? n Meet-me Conf? n Lock? n
Basic? y EAS? y G3V4 Enhanced? y ANI/II-Digits? y ASAI Routing? y
Prompting? y LAI? y G3V4 Adv Route? y CINFO? y BSR? y Holidays? y
Variables? y 3.0 Enhanced? y
01 # This is the main menu "if you know your partys extensions" vector.
02 wait-time 1 secs hearing silence
03 collect 1 digits after announcement 6002 for none
04 goto step 15 if digits = 1
05 goto step 19 if digits = 2
06 goto step 23 if digits = 3
07 goto step 27 if digits = 4
08 goto step 31 if digits = 5
09 goto step 35 if digits = 6
10 goto step 39 if digits = 7
11 goto step 43 if digits = 8
12 goto vector 1 @step 1 if digits = 9
13 goto step 2 if unconditionally
14 stop
15 collect 3 digits after announcement none for none
16 set digits = digits ADD 1000
17 route-to digits with coverage y
18 stop
19 collect 3 digits after announcement none for none
20 set digits = digits ADD 2000
21 route-to digits with coverage y
22 stop
23 collect 3 digits after announcement none for none
24 set digits = digits ADD 3000
25 route-to digits with coverage y
26 stop
27 collect 3 digits after announcement none for none
28 set digits = digits ADD 4000
29 route-to digits with coverage y
30 stop
31 collect 3 digits after announcement none for none
32 set digits = digits ADD 5000
33 route-to digits with coverage y
34 stop
35 collect 3 digits after announcement none for none
36 set digits = digits ADD 6000
37 route-to digits with coverage y
38 stop
39 collect 3 digits after announcement none for none
40 set digits = digits ADD 7000
41 route-to digits with coverage y
42 stop
43 collect 3 digits after announcement none for none
44 set digits = digits ADD 8000
45 route-to digits with coverage y
46 stop
 

Are you no longer checking your VRT for numbers you don't want callers to reach, like the hunt group with ext. 2000?

- Stinney
"Scire ubi aliquid invenire possis, ea demum maxima pars eruditionis est"

"To know where to find anything is, after all, the greatest part of education"

 
I actually just added it back as you were writing that I think

01 wait-time 0 secs hearing silence
02 collect 1 digits after announcement 6002 for C
03 goto vector 1 @step 1 if digits = 9
04 goto step 6 if unconditionally
05 stop
06 collect 3 digits after announcement none for none
07 set digits = digits CATL C
08 goto step 2 if digits < 900
09 goto step 11 if digits in table 1
10 route-to digits with coverage y
11 announcement 6020
12 goto step 2 if unconditionally
01 wait-time 0 secs hearing silence
02 collect 1 digits after announcement 6002 for C
03 goto vector 1 @step 1 if digits = 9
04 goto step 6 if unconditionally
05 stop
06 collect 3 digits after announcement none for none
07 set digits = digits CATL C
08 goto step 2 if digits < 900
09 goto step 11 if digits in table 1
10 route-to digits with coverage y
11 announcement 6020
12 goto step 2 if unconditionally
 
Sorry it double posted. here it is.

01 wait-time 0 secs hearing silence
02 collect 1 digits after announcement 6002 for C
03 goto vector 1 @step 1 if digits = 9
04 goto step 6 if unconditionally
05 stop
06 collect 3 digits after announcement none for none
07 set digits = digits CATL C
08 goto step 2 if digits < 900
09 goto step 11 if digits in table 1
10 route-to digits with coverage y
11 announcement 6020
12 goto step 2 if unconditionally
13 STOP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top