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

CM 3.1 2 ACDs, can we set call flow by %?

Status
Not open for further replies.

2BAvoice

Vendor
Feb 28, 2006
243
US
We have two ACD's. Customer wants 80% calls coming in on a VDN to go to ACD 1, the other 20% to go to ACD 2. I can't find any way to do it by percentages. Anyone have an idea?
 
There is a way that you could do it with vector variables. Something like this may work, if you want an 80-20 split (anyone, please correct me if I am wrong.)

01 wait-time 2 secs hearing ringback
02 goto step 7 if A = 4
03 set A = A ADD 1
04 route-to number 1 with cov n if unconditionally
05 goto step 2 if unconditionally
06 stop
07 route-to number 2 with cov n if unconditionally
08 set A = none ADD 0
09 stop
10
11

If A=4, then you have received the first 4 calls to number 1, then the 5th call, would route to number 2 and reset the counter back to 0 to count up to 4 calls again.

If you are going to do this, you must remember to set the vector variables.
 
thanks RJ, will try this out...very much appreciated.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top