Hi all,
First time poster here.
I have been asked to look at a way of reporting on menu selections for a client. I thought I might be able to build up a string of numberical values using variables in the vector:
I have set up something like this:
VEC 600:
01 collect 1 digit after announcement x for A
02 goto vector 601 @step 1 if digits = 1
03 goto vector 611 @step 1 if digits = 2
stop
VEC 601:
01 collect 1 digit after announcement y for B
02 goto step 9 if digits = 1
03 goto step 12 if digits = 2
.
.
.
09 set digits = A CATR B
10 queue-to.....
.
.
12 set A = A CATR B
13 goto vector 602 @step 1 if unconditionally
So, a customer calls and enters 1 for the first menu, and 1 for the second. A=1, B=1 which are CATR'd to 'digits' 11, which is written to External_Call_History Column LAST_DIGIT_ENTERED.
My question is; A and B are Global variables, does this mean that they are global to the ACD (2 calls come into the vector and we see cross-over between the menu selections? or are the variables initilised per call so there would never be any cross over?
I hope this makes sense, I've only been looking at VIV for a day so am not 100% clear on how they work.
Thanks,
Colin
First time poster here.
I have been asked to look at a way of reporting on menu selections for a client. I thought I might be able to build up a string of numberical values using variables in the vector:
I have set up something like this:
VEC 600:
01 collect 1 digit after announcement x for A
02 goto vector 601 @step 1 if digits = 1
03 goto vector 611 @step 1 if digits = 2
stop
VEC 601:
01 collect 1 digit after announcement y for B
02 goto step 9 if digits = 1
03 goto step 12 if digits = 2
.
.
.
09 set digits = A CATR B
10 queue-to.....
.
.
12 set A = A CATR B
13 goto vector 602 @step 1 if unconditionally
So, a customer calls and enters 1 for the first menu, and 1 for the second. A=1, B=1 which are CATR'd to 'digits' 11, which is written to External_Call_History Column LAST_DIGIT_ENTERED.
My question is; A and B are Global variables, does this mean that they are global to the ACD (2 calls come into the vector and we see cross-over between the menu selections? or are the variables initilised per call so there would never be any cross over?
I hope this makes sense, I've only been looking at VIV for a day so am not 100% clear on how they work.
Thanks,
Colin