RedTech443
MIS
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
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