cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1118
Views
0
Helpful
3
Replies

UCCX Script - sending to VM

sweetsunshine
Level 1
Level 1

Dear All,

I am very new user of Cisco Systems, I have installed and integrated CUCM with UCCX both version 7.0 as per Cisco document. For the contact center I am using the basic ICD Script with a very little modification of adding MoH when the caller is in queue.

I just want to do couple of things

·         When the caller extends more than 5 minutes in the queue the call should go to the Voice Mail system.

·         When any caller calls during out of office hours it should go to the Voice Mail directly.

Can anyone please explain me how I can achieve this task.

Thanks,

SS

3 Replies 3

SAN J
Level 2
Level 2

There's a lot of good examples in the Cisco Script Repository that you can look at to get an idea of how they're built. For the queueing part, one (very simple) way would be to setup the delay of the music to 5 minutes (if you don't have any break for announcements/options within the queue itself) and right after that have a call redirect to the voicemail box extension. See below. You can also use the Get Reporting Statistic to get the wait time if you're looping the queue and use the IF statement to do something like If WaitTime > 300 and use Call Redirect if it's true.

Call Hold

Delay 5 minutes

Call Unhold

Call Redirect - to voicemail box ext

For the time of day routing, you can use the Day of the Week and the Time of Day combination to come up with  that logic. Use the Call Redirect on that as well for afterhours.

Hope that helps...

Check this out too. The docs in this link help explain each and every one of the options you can use...

http://www.cisco.com/en/US/products/sw/custcosw/ps1846/products_programming_reference_guides_list.html

I'm not sure you really want to put the caller on hold for 5 minutes without hearing a prompt, nothing pisses a customer off more than hearing nothing as opposed to hearing something akin to "We're sorry you're on hold" etc etc.

You'd be better to create an int variable, call it counter

QueueLoop:

if(counter >= 10)

     True:

          Call redirect step (destination = voicemail pilot, called number = voicemail box number)

      False:

          Call hold

          Delay 30

          Call unhold

          Play Prompt (prompt = "we're sorry message")

          Increment counter

          Goto QueueLoop

Tanner Ezell www.ctilogic.com