Genesys CTI User Forum
Genesys CTI User Forum => Genesys-related Development => Topic started by: Srinivas on December 30, 2016, 12:19:30 PM
-
Genesis Experts,
Wanted to implement the Markdone implementation on Not Ready status in Genesys WDE - WPF ,C#
Current status :
Call status = EventReleased
Agentstatus = ACW
And trying to change the status to Not Ready.
Needed to inject Markdone implementation when status changing to Not Ready.
Please guide me on the above task.
-
All what you have mentioned is available within the WDE by default. Try to read the doc carefully or try to describe your needs in deep details.
-
I'm not sure if there's a configuration option toautomatically mark an interaction done when the agent changes state to Not Ready, but you can do it programmatically.
You need to insert a command into the "MediaVoiceNotReady" chain of command (before or after "NotReady") and from there launch the "InteractionVoiceClose" chain of command.
-
Consider the WDE native option:
voice.mark-done-on-release
• Default Value: false
• Valid Values: true, false
• Changes take effect: When the application is started or restarted.
• Description: Specify if an interaction should be closed automatically if a TServer
Release event is received. This option can be overridden by a routing strategy, as
described in Overriding Options by Using a Routing Strategy.
Alternatively if you are truly only wanted to do this upon going Not Ready, I would agree with Gabi's suggestion. Genesys doc site has good information on how to execute chain of commands. The code samples provided with WDE developer install includes chain of command sample.
Regards,
Andrew