View Single Post
Old June 26th, 2003, 11:18 PM   #1 (permalink)
nexSIP
Moderator
 
nexSIP's Avatar
 
Join Date: Jun 2003
Posts: 527
Blog Entries: 3
nexSIP is on a distinguished road
Talking This document will explain how to program a vector to play back the extension you are

Assign the primary vector to a VDN and dial that VDN. The following example assumes the dial plan is set to four-digit dialing and extension type for digits 2, 3, and 6. This can be modified for five-digit dialing, and multiple starting digits.

Announcement

4635 = “zero”
4636 = ”one”
4637 = “two”
4638 = “three”
4639 = “four”
4640 = “five”
4641 = “six”
4642 = “seven”
4643 = “eight”
4644 = “nine”


Primary Vector -67

01 wait-time 0 secs hearing ringback
02 goto step 12 if ani = 3+
03 goto step 6 if ani = 6+
04 goto step 9 if ani = 2+
05 goto step 3 if unconditionally
06 announcement 4641
07 goto vector 68 if unconditionally
08 disconnect after announcement none
09 announcement 4637
10 goto vector 68 if unconditionally
11 disconnect after announcement none
12 announcement 4638
13 goto vector 68 if unconditionally
14 disconnect after announcement none
15
16

Second Digit Vector - 68

01 goto step 12 if ani = ?1+
02 goto step 14 if ani = ?2+
03 goto step 16 if ani = ?3+
04 goto step 18 if ani = ?4+
05 goto step 20 if ani = ?5+
06 goto step 22 if ani = ?6+
07 goto step 24 if ani = ?7+
08 goto step 26 if ani = ?8+
09 goto step 28 if ani = ?9+
10 announcement 4635
11 goto vector 69 if unconditionally
12 announcement 4636
13 goto vector 69 if unconditionally
14 announcement 4637
15 goto vector 69 if unconditionally
16 announcement 4638
17 goto vector 69 if unconditionally
18 announcement 4639
19 goto vector 69 if unconditionally
20 announcement 4640
21 goto vector 69 if unconditionally
22 announcement 4641
23 goto vector 69 if unconditionally
24 announcement 4642
25 goto vector 69 if unconditionally
26 announcement 4643
27 goto vector 69 if unconditionally
28 announcement 4644
29 goto vector 69 if unconditionally
30 disconnect after announcement none
31
32

Third Digit Vector - 69

01 goto step 12 if ani = ??1+
02 goto step 14 if ani = ??2+
03 goto step 16 if ani = ??3+
04 goto step 18 if ani = ??4+
05 goto step 20 if ani = ??5+
06 goto step 22 if ani = ??6+
07 goto step 24 if ani = ??7+
08 goto step 26 if ani = ??8+
09 goto step 28 if ani = ??9+
10 announcement 4635
11 goto vector 70 if unconditionally
12 announcement 4636
13 goto vector 70 if unconditionally
14 announcement 4637
15 goto vector 70 if unconditionally
16 announcement 4638
17 goto vector 70 if unconditionally
18 announcement 4639
19 goto vector 70 if unconditionally
20 announcement 4640
21 goto vector 70 if unconditionally
22 announcement 4641
23 goto vector 70 if unconditionally
24 announcement 4642
25 goto vector 70 if unconditionally
26 announcement 4643
27 goto vector 70 if unconditionally
28 announcement 4644
29 goto vector 70 if unconditionally
30 disconnect after announcement none
31
32


Fourth Digit Vector - 70

01 goto step 12 if ani = ???1+
02 goto step 14 if ani = ???2+
03 goto step 16 if ani = ???3+
04 goto step 18 if ani = ???4+
05 goto step 20 if ani = ???5+
06 goto step 22 if ani = ???6+
07 goto step 24 if ani = ???7+
08 goto step 26 if ani = ???8+
09 goto step 28 if ani = ???9+
10 announcement 4635
11 stop
12 announcement 4636
13 stop
14 announcement 4637
15 stop
16 announcement 4638
17 stop
18 announcement 4639
19 stop
20 announcement 4640
21 stop
22 announcement 4641
23 stop
24 announcement 4642
25 stop
26 announcement 4643
27 stop
28 announcement 4644
29 disconnect after announcement none
30
31
32
nexSIP is offline   Reply With Quote