07-26-2013 10:54 AM - edited 03-14-2019 12:07 PM
Hello,
I'm on UCCX 8.5 and my supervisor would like to add a statement to the call so callers no they are getting ready to be answered by an agent. She thinks this will help with abandons. She wants to add": (Your call is now being transferred to an agent or may ringing) at least they now there call is getting ready to be answered.
Thank you for your help.
07-26-2013 11:03 AM
The basic idea is that you separate the selection of the resource from the connection to the resource, which are both normally done in the same step, by default.
To achieve what you want, it takes two additional variables, and two additional steps, and the modification of one existing step.
Variables
Prompt youre_being_connected = P[youre_being_connected.wav]
User selected_resource = null
Script
...
/* Here you will need to set the Connect property to "No" and the Resource Selected property to "selected_resource" */
Select Resource (--Triggering Contact-- from "CustomerServiceCSQ")
Selected
Play Prompt (--Triggering Contact--, youre_being_connected)
Connect (--Triggering Contact-- to selected_resource)
Connected
End
Failed
...
Queued
...
Hope that helps.
EDIT: I need to add more to this, because there are somethings to note with the behavior of such a solution.
Something I was taught growing up in UCCX was to fake a ringback tone to the caller during the transfer to the Agent. You do this by changing the Network Music On Hold source on your CTI Port Group to that of one on CUCM which contains a wav file of ringback sounds.
The thing to watch out for, in either the original request, or this fake ringback one, is Ring No Answer. If the caller is immediately directed to an Agent then this is the experience, assuming you have the default sample MOH and a queue message:
Now the caller knows that the system tried two Agents, who didn;t help them, and is now stuck in queue. I would not like that, personally. I would think, "Jeez what just happened there? It like tried to connect my two times and failed." I may even hang up because I think it's broken and cannot connect me.
I think a much better experience is if the solution hides the attempted transfers from the caller and was as follows:
Now the caller thinks this is just a loop break, and is none the wiser that two Agents were attempted and failed to connect. Basically, they've just been waiting for the first one. If you make your queue messages (Play Prompt Steps) Uninterruptible, then you also ensure that they are not cutoff mid sentence, thus furthering this masking of the Ring No Answer failure scenarios.
I hope that's helpful, even though it's counter to what you requested.
Anthony Holloway
Please use the star ratings to help drive great content to the top of searches.
07-26-2013 11:09 AM
Is the prompt one variable and user the other variable?
Thanks
07-26-2013 11:51 AM
destiny6366 wrote:
Is the prompt one variable and user the other variable?
Correct. I wrote them above, but am including them here again for clarity:
Variables
Prompt youre_being_connected = P[youre_being_connected.wav]
User selected_resource = null
Anthony Holloway
Please use the star ratings to help drive great content to the top of searches.
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