09-15-2016 10:48 AM - edited 03-14-2019 04:32 PM
I have to reroute 1 out of every 3 calls to a different call center. In my UCCX .aef script I used the following process,
1 added increment step
2 added if statement if variable is <=3 go to center 1
if false
go to center 2
set increment to 0
next call would then increment variable to 1 up to 3
So my question is, will the increment step increase as each calls come into the script? or does the script start over for each call meaning my increment variable is set to 0. Then the next call, should increment to 2 then 3 then reset.
Solved! Go to Solution.
09-15-2016 10:57 AM
Hi kmeehan36,
The script runs on a per call basis , so your variable will be "0" for each call hitting the script.
09-15-2016 11:14 AM
kmeehan36,
I think you can achieve this by saving this data (counter value) somewhere, for example by integrating your UCCX with a SQL DB so you can write/read this value in a table, this way you can effectively make your counter as you need.
09-15-2016 10:57 AM
Hi kmeehan36,
The script runs on a per call basis , so your variable will be "0" for each call hitting the script.
09-15-2016 11:01 AM
Thanks, how would I go about creating a 1 out of every 3 calls to be redirected in AEF is it possible?"
09-15-2016 11:14 AM
kmeehan36,
I think you can achieve this by saving this data (counter value) somewhere, for example by integrating your UCCX with a SQL DB so you can write/read this value in a table, this way you can effectively make your counter as you need.
09-15-2016 11:15 AM
Thanks, sounds like a solid approach
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide