Hi everyone
I need a bit of help please with some Avaya scripting syntax.
I've had a request to add a queue position announcement to the call queues on one of our AACC lines. I've got an idea on how to achieve it, but it seems very inefficient and I'm thinking there must be a better way.
Here's what I've come up with...
Our AACC appears to have a lot of predefined voice prompts relating to numerical announcements - e.g. "c_one_gv" appears to reference audio "English File 1:2", which I'm assuming comes packaged on the AACC server (as opposed to a CallPilot reference). We've never used these, but I guess they're intended for use in circumstances such as those facing me now. In that case, the most obvious syntax that springs to mind for implementing the counter and announcement is...
However I'm aware this won't really work in practice since I'd need to replicate the above for every possibly queue position - clearly a dirty way of doing it!
I can't see anything in the manual that specifically helps. I've found some references to "building a macro" via Google, but nothing completely matching what I need. I've also never built a macro in AACC before , to my knowledge. Can anyone advise on how to best achieve this?
I need a bit of help please with some Avaya scripting syntax.
I've had a request to add a queue position announcement to the call queues on one of our AACC lines. I've got an idea on how to achieve it, but it seems very inefficient and I'm thinking there must be a better way.
Here's what I've come up with...
Our AACC appears to have a lot of predefined voice prompts relating to numerical announcements - e.g. "c_one_gv" appears to reference audio "English File 1:2", which I'm assuming comes packaged on the AACC server (as opposed to a CallPilot reference). We've never used these, but I guess they're intended for use in circumstances such as those facing me now. In that case, the most obvious syntax that springs to mind for implementing the counter and announcement is...
Code:
IF POSITION IN QUEUE *skillset* = *#* THEN
OPEN VOICE SESSION
PLAY PROMPT
VOICE SEGMENT [COLOR=#3465A4]*bespoke voice seg stating "you are position number"*[/color] VOICE SEGMENT [COLOR=#CC0000]*predefined voice seg announcing relevant #*[/color] VOICE SEGMENT [COLOR=#3465A4]*bespoke voice seg completing announcement*[/color]
END VOICE SESSION
END IF
However I'm aware this won't really work in practice since I'd need to replicate the above for every possibly queue position - clearly a dirty way of doing it!
I can't see anything in the manual that specifically helps. I've found some references to "building a macro" via Google, but nothing completely matching what I need. I've also never built a macro in AACC before , to my knowledge. Can anyone advise on how to best achieve this?