" /> Your estimated wait time will be 'X' minutes - Genesys CTI User Forum

Author Topic: Your estimated wait time will be 'X' minutes  (Read 3426 times)

Offline Victory

  • Newbie
  • *
  • Posts: 6
  • Karma: 0
Your estimated wait time will be 'X' minutes
« on: October 26, 2011, 08:43:00 PM »
Advertisement
Hello All,

When calls are in queue, we need to implement a message that lets the caller know estimated wait time.

-So call comes in
-No one is available
-we play a message that says "your estimated wait time will be 2 minutes....or whatever

Here's some high level info about our callcenter
Apps are on version 7.6/8.0
we have GVP incorporated into our framework
Windows/SQL environment

Any suggestions??

Many thanks!
Victory

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: Your estimated wait time will be 'X' minutes
« Reply #1 on: October 26, 2011, 10:29:44 PM »
Possible with GVP, PBX resources (Alcatel OXE for example).
If using GVP on your strategy you need to call an application hosted on GVP and pass it the EWT extracted from a StatServer

Offline Victory

  • Newbie
  • *
  • Posts: 6
  • Karma: 0
Re: Your estimated wait time will be 'X' minutes
« Reply #2 on: October 27, 2011, 02:31:12 PM »
Thanks, yeah I would think GVP would definitely be in the mix.
I was looking at over search results that was similar to what I'm trying to do. It looks like in my VAG I would need to put all the respective VQ's in there. Then in my strategy I would need to do the SData to get the EWT.

So once we get the app setup in GVP, I'm guessing we would need several files to play the different messages?? How would that work. 

thanks again!

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: Your estimated wait time will be 'X' minutes
« Reply #3 on: October 27, 2011, 02:43:03 PM »
Yes, you can use TTS to play the exact waiting time or create a function to play a range:

TimeEWT(secs)
{
if secs > 60 and secs =< 180 then audio="ewt3min.wav"
if secs > 180 and secs =< 300 then audio="ewt6min.wav"
.
.
.
.
}

Prompt(audio)

Something like that...

Offline Victory

  • Newbie
  • *
  • Posts: 6
  • Karma: 0
Re: Your estimated wait time will be 'X' minutes
« Reply #4 on: October 27, 2011, 03:50:02 PM »
gotcha!

I'll begin to put something together.

Offline Tambo

  • Sr. Member
  • ****
  • Posts: 456
  • Karma: 5
Re: Your estimated wait time will be 'X' minutes
« Reply #5 on: November 08, 2011, 05:11:47 PM »
Hi,

Be careful though if you use priority overide in the LRT as this will cause havoc with timings

Tambo