07-30-2019 01:21 AM
Hi,
We have used PostCallTreatment Scalar variable to hold the Post Call Survey application trigger number. While agent disconnects the call via Finesse, then the Post Call Survey application gets triggered using the value stored in PostCallTreatment variable. This approach is working fine.
However, if agent A does consult transfer/conference with another agent B for an query along with caller and after discussion, if agent B disconnects the call via Finesse, then Post Call Survey application gets invoked and prompts gets played to both caller and Agent A, which is wrong.
Is there anyway to restrict? Please suggest.
Regards,
Priya
07-30-2019 10:10 AM
I have experienced this exact problem before too. I would also like to know how others have solved this.
08-06-2019 05:20 PM
Hello guys,
Do you have any update on that?
I have a similar problem here using CCX 11.6.2.10000-38 with ciscouccx.1162.ES04.24.cop.
CallerA places a call to the queue and is answered by AgentA
AgentA makes a consult call to Extension 1000 (not a CCX Agent, just a regular extension)
Agent A ends the Consult Call via Finesse
Extension 1000 is directed to the Post Call Survey
Agent A retrieves the call from CallerA, which was on Hold, and ends it via Finesse
CallerA is NOT redirected to Post Call Survey
I guess this is a bug. If you don't have any update, I will raise a TAC case tomorrow.
Thanks,
Bruno
08-06-2019 08:31 PM
Hello guys,
I have resolved my situation in the following way (I hope that applies to you as well):
In the Main Script:
- Set a variable callID = Get Contact Info (Implementation ID)
- Send the variable callID in the Set Enterprise Info step to the Post Call Treatment
In the Post Call Script:
- Receive callID from the Main Script
- Set a new variable callIDPostCall = Get Contact Info (Implementation ID)
- if callID != callIDPostCall then Go To TERMINATE
The idea of this implementation is that a consult call generates a new call ID in the CDRs. So, if the call that triggered the Post Call Survey has the same ID of the call arrived in the main script, it means it is the same call leg, so we can play the post call survey.
Otherwise, if the call ID received from the main script is different from the call ID in the moment the Post Call Survey was invoked, it means a different call leg (a consult call) triggered that script. In this case, we terminate the Post Call Script.
As per my initial tests in my lab, it worked like a charm. I will try in the production environment tomorrow and will let you know if I find any issues in this implementation.
HTH.
Bruno Nonogaki
08-07-2019 02:00 PM
08-07-2019 02:14 PM
The agent is pressing the End Call button in Finesse, which transfers the user to a post call script.
I implemented the solution in the production environment, and everything is working fine.
08-07-2019 05:56 PM
08-07-2019 06:33 PM
Yes, sure!
So I am assuming you already have the PostCallTreatment configured, and properly redirecting to a Trigger when the agent ends the call via Finesse.
In the main script:
1. Create a String variable called callID
2. In the begining of the script, create a Get Contact Info step, and set the parameter Implementation ID to be callID
3. In the Set Enterprise Call Info step where you add the Post Call Treatment, add the callID as PeripheralVariable9 (for example) in the General tab - here you might be already passing other parameters to the Post Call Application, such as callingNumber, CSQ ID, Agent Name, etc. It depends on how you configured your post call treatment.
In the Post Application Script:
1. Create a String variable called callID
2. Create a String variable called callIDPostCall
3. Add a Get Enterprise Call Info step, adding the PeripheralVariable9 to the variable callID - here you might be already receiving other parameters from the main script, depending on how you configured your application. As this is mainly done for post call surveys, I usually send the CSQ Name, Agent ID, CallingNumber. So I just added one more parameter to be sent from the main application to the post call application
4. Create a Get Contact Info step, and set the parameter Implementation ID to be callIDPostCall
5. Create a IF step "if (callID != callIDPostCall)" - if true, Goto Terminate
And done! :)
Thanks,
Bruno
08-07-2019 08:43 PM
08-08-2019 05:50 AM
Hello Anthony,
I guess even if you make a consult call, and end that call, the CSQ Name arrives filled to the Post Call Script. If it comes blank, that would also work. As per my testing, the only thing I found to be different from the main call and a consult call is the Implementation ID, which is right, because a consult call generates a new Call ID in CUCM CDRs.
But if you find another value that can distinguish the calls, you could definitely use that too.
Thanks!
Bruno
08-08-2019 07:48 AM
08-26-2019 11:53 PM
Hi,
Finally we developed an agent gadget and implemented in Finesse layout to address the issue.
Whenever agents receives the call in Finesse, based on the Type of the call the call variables are populated.
For example,
The gadget worked charm and customer tested and certified.
Thanks all for your support.
Regards,
Priya K.R.
02-04-2021 07:48 PM
can you shared this gadget, please
06-13-2024 03:33 AM
can you share the sample script
06-13-2024 03:54 AM
I tried the steps unfortunately once agents press the end button ,calling and called calls are disconnecting it is not going to the survey.
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