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

VDN Naming Conventions (Not Changing with Vectors) 2

Status
Not open for further replies.

Realign

IS-IT--Management
Mar 12, 2005
42
US
Site Info: G3SI V11 Intuity MAP5 CMS V6
Good Afternoon All. I am having a problem with my VDN’s in regards to incoming calls. I have noticed another post with the exact symptoms I am experiencing, however no resolution was given, only the statement that the problem has been resolved.
Question:
Incoming calls get directed to one VDN, with the associated vector. If a customer presses 1, they are directed to another Vector, however the original naming convention remains. If the customer presses 2, same issue. What I am trying to do is as follows:


Extension: 5000
Name: Customer Test
Vector Number: 22

Meet-me Conferencing? n
Allow VDN Override? y - Changed with same results.
COR: 1
TN: 1
Measured: none


VDN of Origin Annc. Extension:



CALL VECTOR

Number: 22 Name: ACD Test
Multimedia? n Meet-me Conf? n Lock? n
Basic? y EAS? n G3V4 Enhanced? y ANI/II-Digits? y ASAI Routing? n
Prompting? y LAI? n G3V4 Adv Route? y CINFO? y BSR? y Holidays? y

01 goto vector 75 if holiday in table 1
02 goto vector 90 if time-of-day is all 18:00 to all 08:28
03 goto vector 90 if time-of-day is fri 17:00 to mon 08:28
04 collect 1 digits after announcement 4852
05 goto vector 1 if digits = 1
06 goto vector 8 if digits = 2
07 goto vector 1 if unconditionally
08 stop
09



CALL VECTOR

Number: 1 Name: Queue Test
Multimedia? n Meet-me Conf? n Lock? n
Basic? y EAS? n G3V4 Enhanced? y ANI/II-Digits? y ASAI Routing? n
Prompting? y LAI? n G3V4 Adv Route? y CINFO? y BSR? y Holidays? y

01 goto vector 75 if holiday in table 1
02 goto step 23 if staffed-agents in split 4 > 0
03 goto vector 90 if time-of-day is all 18:00 to all 08:28
04 goto vector 90 if time-of-day is fri 17:00 to mon 08:28
05 wait-time 5 secs hearing music
06 queue-to split 1 pri m
07 announcement 4801
08 wait-time 10 secs hearing music



CALL VECTOR

Number: 8 Name: Service Test
Multimedia? n Meet-me Conf? n Lock? n
Basic? y EAS? n G3V4 Enhanced? y ANI/II-Digits? y ASAI Routing? n
Prompting? y LAI? n G3V4 Adv Route? y CINFO? y BSR? y Holidays? y

01 goto vector 75 if holiday in table 1
02 goto step 14 if staffed-agents in split 4 > 0
03 goto vector 90 if time-of-day is all 18:00 to all 08:28
04 goto vector 90 if time-of-day is fri 17:00 to mon 08:28
05 wait-time 10 secs hearing music
06 queue-to split 35 pri h
07 announcement 4800


So, customer comes in on VDN 5000 which is directed to Vector 22. Customer has 2 options. Press 1 and go to vector 1 (Queue Test) or press 2 for vector 8 (Service Test). So if a customer presses 2 why doesn’t the name on the Agents phone reflect Service Test and vise versa? Also, where is the a=info 2 coming from? Your time and efforts are greatly appreciated.
 
In regards to the a=info 2 this has been determined to be the option the customer presses. If customer presses 1, they are routed to vector 1 which states a=info 1 and if customer presses 2, they are routed to vector 8 which states a=info 2, however the names remain the same regardless of which vector the customer is routed to. Any thoughts?
 
Create 2 new vdns with the names of Que test and Service test, then add vector 1 for que test in the vdn and 8 for service test, allow vdn override, then in vector 22 put route to number ( New VDN ) instead of goto vector 1 or 8 if digits = 1 or 2
 
From what I understand VDN Override only works when you pass one VDN to another, it does not override a Vector Name.

You need to create 2 new VDN's that point to Vectors 1 and 8. They don't need to be DID's, any extension in your dialplan will do. Name these 2 VDN's the name you want to appear on the display and make sure that Allow VDN Override is set to 'Y'.

Change lines 05 and 06 of Vector 22 to point to these VDNS.
 
I sincerely thank both of you for your posts. The idea of having the vector route directly through the VDN with override enabled, never even occurred to me. I created 2 new VDN’s and changed vector 22 as follows:

01 goto vector 75 if holiday in table 1
02 goto vector 90 if time-of-day is all 18:00 to all 08:28
03 goto vector 90 if time-of-day is fri 17:00 to mon 08:28
04 collect 1 digits after announcement 4852
05 goto step 9 if digits = 1
06 goto step 10 if digits = 2
07 goto step 9 if unconditionally
08 stop
09 route-to number 4050 with cov n if unconditionally
10 route-to number 4055 with cov n if unconditionally
11 stop

After a few test calls, it is working perfectly. It is exactly what they were looking for. Once again thanks to both of you for the information you have provided.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top