Author Topic: Genesys WDE - Mardone implementation on Not Ready status  (Read 2945 times)

Offline Srinivas

  • Newbie
  • *
  • Posts: 2
  • Karma: 0
Genesys WDE - Mardone implementation on Not Ready status
« 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.




« Last Edit: December 30, 2016, 12:59:49 PM by Srinivas »

Offline Kubig

  • Hero Member
  • *****
  • Posts: 2752
  • Karma: 44
Re: Genesys WDE - Mardone implementation on Not Ready status
« Reply #1 on: January 02, 2017, 12:29:43 PM »
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.

Offline Gabi

  • Jr. Member
  • **
  • Posts: 64
  • Karma: 0
Re: Genesys WDE - Mardone implementation on Not Ready status
« Reply #2 on: January 25, 2017, 12:53:11 PM »
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.

Offline abudwill

  • Full Member
  • ***
  • Posts: 157
  • Karma: 4
Re: Genesys WDE - Mardone implementation on Not Ready status
« Reply #3 on: February 09, 2017, 05:16:41 PM »
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