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!

Change variables assignment via VECTOR?

Status
Not open for further replies.

Stillyman

Programmer
Mar 24, 2003
123
0
0
US
Hello All,
So I trying to write a vector to change the assignment number to 0 then back to 1. I trying to load balance between adjunct links for our system.
Here is the variable:
Var Description Type Scope Length Start Assignment VAC
C Min Match value G 1 1 <--WHAT I WANT TO CHANGE TO 0 THEN BACK TO 1 VIA VECTOR

Here is my vector:

Number: 7 Name: 50/50 split
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 goto step 5 if C = 1
02 set C = none ADD 1
03 adjunct routing link 2
04 wait-time 7 secs hearing silence
05 set C = none ADD 0
06 adjunct routing link 1
07 wait-time 6 secs hearing silence
08 goto vector 6 @step 1 if unconditionally
09 stop

This is not working.. Is their anyway of doing this though a vector? Or does anyone know how to load balance between adjunct links?

This is my Trace of the VDN:
10:21:37 TRACE STARTED 02/23/2016 CM Release String cold-03.0.124.0-22505
10:21:41 0 0 ENTERING TRACE cid 289
10:21:41 7 1 vdn e60007 bsr appl 0 strategy 1st-found override n
10:21:41 7 1 goto step 5 if C = 1
10:21:41 7 1 variable C = [0] global
10:21:41 7 2 set C = none ADD 1
10:21:41 7 2 variable C = [NO CHANGE] COLLECT or ASAIUUI type?
10:21:41 7 3 adjunct routing link 2
10:21:41 7 4 wait 7 secs hearing silent
10:21:48 7 5 set C = none ADD 0
10:21:48 7 5 variable C = [NO CHANGE] COLLECT or ASAIUUI type?
10:21:48 7 6 adjunct routing link 1
10:21:48 7 7 wait 6 secs hearing silent
10:21:54 7 8 LEAVING VECTOR PROCESSING cid 289
10:21:54 7 8 TRACE COMPLETE cid 289

Any help would be great.
Thank you in advance!!

Stillyman!

 
Normally when you are using adjuncts one is active and the other is in hot standby mode ready to take over when necessary.

You would normally write the vector like

Number: 4122 Name: Adjunct route
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 wait-time 0 secs hearing ringback
02 adjunct routing link 1
03 adjunct routing link 2
04 wait-time 6 secs hearing ringback
05 route-to number 1440086 with cov n if unconditionally
06 stop
07
 
Nope we want to do a load balance between the 2 links.
But thank you for the reply..
Stillyman
 

Change variable to type of collect and try again.

- Stinney

“The man who asks a question is a fool for a minute, the man who does not ask is a fool for life.” - Confucius
 
Stinney that worked... Thank you!!
Have a good one!

Stillyman
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top