Too cool. Now you're making me want to get a toll free number for the same reason I got a domain name. Thanks for your support in the forums.
... View more
This was just in another post recently.... Check page 3-159 of this document to see how currency Prompt literals work. http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_5_0/programming/script_devp/express_lang/crs501lr.pdf
... View more
You should try leaving the account balance as a string and playing the prompt as: $[accountBalanceVariable] There is simple TTS capabilities that speak dollar amounts.
... View more
The correct version is installed by default. You have to watch out for the Java system tray icon. It will keep trying to get you to update it. Perhaps you, or someone else with access to the server, updated it.
... View more
I've tried this, and that "spit second" is long enough to route a queued caller to the agent. If you try adding more than one agent state action to a macro button, it will not let you. Also, just in case someone else suggests it, you cannot go off hook on your agent line while not ready, then make yourself ready. It tells you an active call is in progress. If this worked, then you could just lift the handset and switch your agent state. The ACD functionality would be bypassed because your line would not be idle. The short answer is, you cannot change your Not Ready reason code, while staying in Not Ready.
... View more
Here is the doc to check SW versions. http://www.cisco.com/en/US/products/sw/custcosw/ps1846/products_device_support_tables_list.html 5.02 requires Sun JDK 1.5.0_011
... View more
That's actually incorrect. Since you are using a Place Call on Hold step, the caller will hear music. Shorten your delay from 30 seconds to 20 seconds. Add in a place call step that has a timeout of 10 seconds. Then loop it. Label: Queue Loop Play Prompt QueueMessage.wav Call Hold Place Call [contact, destination, timeout=10] -- Successful ---- Terminate contact (Not --Triggering Contact--) -- No Answer -- Busy -- Invalid -- NoResource -- Unsuccessful Delay 20 Sec Call Unhold Goto Queue Loop
... View more
You could use a place call step to call an extension on the agent phones. This would ring/light up the phone when a caller enters a queue branch.
... View more
Just to promote conversation... If you had two extensions on your phone, one ACD, one non-ACD, you could transfer calls from your agent line to you personal line. This way your agent line is idle, and depending on your CSQ settings, you would be made ready right away, and could take another call on your agent line. You could even create a macro button to make that transfer happen with one click. Though it would be messy with many agents. Discuss...
... View more
I'm not sure what you installed, but the RTRT is a Java applet. You need a specific version of the JVM installed in order to see the stats. Check your Java version compatibility here: http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_compatibility/matrix/crscomtx.pdf You could always launch RTRT from a Remote Desktop session to the server.
... View more
Alternatively, you could do this. Say your account balance was a string stored in a variable called: accountBalance. On the play prompt step use $[accountBalance] as the prompt you wish to play. The special $[] prompt container will not play if the $ is a part of the value. i.e., use "13.45", and not "$13.45" If the dollar sign is a part of your value, use this to strip it off: $[accountBalance.replace("$", "")] HTH Anthony
... View more