UCCX 8.5 - How do I create a menu option that overwites a prompt?

Hi All,
I'm fairly new to UCCX scripting and have a question about a way to create a menu option that overwrites a prompt.
Here is the situation, we have only one small call center. There are two scripts in play here, one is their production script. Everythign is working fine with that script. The other is a recording script. The call center supervisors would like to be able to call into the recording script and record a prompt that says something like "All agents will be out today, November 1st, until 2pm on a staff luncheon, please call back at 2pm". This would overwrite the welcome prompt on their production script. As you can see from the language above, the message would be different depending on what was going on that day. I actually have this working quite well.
The problem is that when they come back from their luncheon, or from whatever they were doing, they want the ability to revert back to the original opening greeting wav file. The way it's set up now, when they get back from lunch they'd have to re-record the whole opening greeting "Thank you for calling XXX, press 1 to be connected to an agent, press 2...".
It seems like there should be a way, a new menu option in the recording script, that would allow me to revert back to the original recording so they don't need to re-record the opening greeting every time. I've created a new folder in Prompt Managment called "Revert" and placed the orginal opening greeting there. Can anyone give me guidance on what step to insert that would in effect say, if the caller presses 3, copy "Revert/Welcome.wav" to "CallCenter/Welcome.wav"? In this case the "CallCenter" folder contains the production prompts for the CallCenter script.
Thanks,
Josh

Josh,
     I would recommend the following configuration:
          1.) Setup a XML file that has an option called "EarlyClose" or something similar.
          2.) Setup your script with an "IF" that reads in that XML document and looks for "EarlyClose".  If it's set, then play the custom closed message.  If not, then play the normal message that is never overwritten.
     The second part is to create a second script that has an internal only extension.  This would then allow your supervisor to dial in, and put in a PIN.  Once this is done, set have the agent record the greeting.  Then (and only then) set the "EarlyClose" variable in your XML document.  This will prevent the user not getting the new prompt recorded and EarlyClose being set early.  You can also setup the script to play back the prompt and then have the end user validate that everything is working right.  I would recommend reading through the scripting guides as they have some great infomation on this type of thing and example scripts.  I hope this helps you out.
Thank you,
Robert W. Rogier -- UCCE TAC Support Engineer
Cisco, RTP NC.

Similar Messages

  • How can we create save layout option in grid tool bar

    hi,
    how can we create select layout option in grid tool bar to save my own layout. if any one knows tell me immediately
    thanks

    Hi again,
    1. We need to do 1 additional thing.
    data : GS_variant TYPE DISVARIANT.
    GS_variant-REPORT = sy-repid.
    2.  while calling pass this parameter also.
         IS_VARIANT                    = GS_variant
    It will work now.
    3. Moreover, I_SAVE has 3 options.
    I_SAVE = SPACE
    Layouts cannot be saved.
    I_SAVE = 'U'
    Only user-defined layouts can be saved.
    I_SAVE = 'X'
    Only global layouts can be saved.
    I_SAVE = 'A'
    Both user-defined and global layouts can be saved.
    regards,
    amit m.
    Message was edited by: Amit Mittal

  • How do I create a 1d array that takes a single calculation and insert the result into the first row and then the next calculation the next time the loop passes that point and puts the results in thsecond row and so on until the loop is exited.

    The attached file is work inprogress, with some dummy data sp that I can test it out without having to connect to equipment.
    The second tab is the one that I am having the problem with. the output array from the replace element appears to be starting at the index position of 1 rather than 0 but that is ok it is still show that the new data is placed in incrementing element locations. However the main array that I am trying to build that is suppose to take each new calculation and place it in the next index(row) does not ap
    pear to be working or at least I am not getting any indication on the inidcator.
    Basically what I am attempting to do is is gather some pulses from adevice for a minute, place the results for a calculation, so that it displays then do the same again the next minute, but put these result in the next row and so on until the specifiied time has expired and the loop exits. I need to have all results displayed and keep building the array(display until, the end of the test)Eventually I will have to include a min max section that displays the min and max values calculated, but that should be easy with the min max function.Actually I thought this should have been easy but, I gues I can not see the forest through the trees. Can any one help to slear this up for me.
    Attachments:
    regulation_tester_7_loops.vi ‏244 KB

    I didn't really have time to dig in and understand your program in depth,
    but I have a few tips for you that might things a bit easier:
    - You use local variables excessively which really complicates things. Try
    not to use them and it will make your life easier.
    - If you flowchart the design (very similar to a dataflow diagram, keep in
    mind!) you want to gather data, calculate a value from that data, store the
    calculation in an array, and loop while the time is in a certain range. So
    theres really not much need for a sequence as long as you get rid of the
    local variables (sequences also complicate things)
    - You loop again if timepassed+1 is still less than some constant. Rather
    than messing with locals it seems so much easier to use a shiftregister (if
    absolutely necessary) or in this case base it upon the number of iterations
    of the loop. In this case it looks like "time passed" is the same thing as
    the number of loop iterations, but I didn't check closely. There's an i
    terminal in your whileloop to read for the number of iterations.
    - After having simplified your design by eliminating unnecessary sequence
    and local variables, you should be able to draw out the labview diagram.
    Don't try to use the "insert into array" vis since theres no need. Each
    iteration of your loop calculates a number which goes into the next position
    of the array right? Pass your result outside the loop, and enable indexing
    on the terminal so Labview automatically generates the array for you. If
    your calculation is a function of previous data, then use a shift register
    to keep previous values around.
    I wish you luck. Post again if you have any questions. Without a more
    detailed understanding of your task at hand it's kind of hard to post actual
    code suggestions for you.
    -joey
    "nelsons" wrote in message
    news:[email protected]...
    > how do I create a 1d array that takes a single calculation and insert
    > the result into the first row and then the next calculation the next
    > time the loop passes that point and puts the results in thsecond row
    > and so on until the loop is exited.
    >
    > The attached file is work inprogress, with some dummy data sp that I
    > can test it out without having to connect to equipment.
    > The second tab is the one that I am having the problem with. the
    > output array from the replace element appears to be starting at the
    > index position of 1 rather than 0 but that is ok it is still show that
    > the new data is placed in incrementing element locations. However the
    > main array that I am trying to build that is suppose to take each new
    > calculation and place it in the next index(row) does not appear to be
    > working or at least I am not getting any indication on the inidcator.
    >
    > Basically what I am attempting to do is is gather some pulses from
    > adevice for a minute, place the results for a calculation, so that it
    > displays then do the same again the next minute, but put these result
    > in the next row and so on until the specifiied time has expired and
    > the loop exits. I need to have all results displayed and keep building
    > the array(display until, the end of the test)Eventually I will have to
    > include a min max section that displays the min and max values
    > calculated, but that should be easy with the min max function.Actually
    > I thought this should have been easy but, I gues I can not see the
    > forest through the trees. Can any one help to slear this up for me.

  • How do i create an itunes account that can only download free apps

    how do i create an itunes account that can only download free apps

    Follow the instructions here > Create an iTunes App Store account without a credit card

  • How do I create a pdf file that is 300 dpi in Adobe Acrobat XI?

    How do I create a pdf file that is 300 dpi in Adobe Acrobat XI?

    PDF files do not have a "resolution" - they aren't images. The pages are a mix of vector art and text, and raster (pixel-based) graphics. The raster items on a page can (and often do) have different resolutions.

  • How do i create a gallery page that you can click on an image, expand it and move left or right to see more images?

    How do i create a gallery page that you can click on an image, expand it and move left or right to see more images?

    You may use slideshow widgets to achieve this. For more details : Adobe Muse Help | Working with Slideshow widgets

  • How do I create a new Style that can be applied to an object?

    Under the Assets menu there is a tab called “Styles”.  My question is how do I create a new Style that I can apply to an object???  A link to a tutorial or something like that would be useful because I can’t find anything!!!    Thanks in advance for helping me eliminate this frustration!!! 

    KomputerMan.com wrote:
    What I want to do is create a library of styles that are basically pictures of various wood types.
    There are a couple of approaches you could try.
    Clipping paths
    1. Draw the part shape as a closed path.
    2. Position the image of woodgrain above or below the shape where you want it positioned.
    3. Cut
    4. Select the closed path.
    5. Paste Inside.
    See: Using FreeHand MX > Contents > Working with Objects > Working with clipping paths
    Tiled fills
    1. Use autotrace to trace the image of the woodgrain, using plenty of colors.
    Using FreeHand MX > Contents > Using Imported Artwork > Tracing bitmaps > Tracing an image
    2. Group the traced paths (but not the image) and create a tiled fill,
    Using FreeHand MX > Contents > Using Strokes and Fills > Applying attributes to fills > Using tiled fill attributes
    3. Make a style from a tile-filled object
    4. Apply the style to other objects.
    Judy Arndt

  • How do i create "Save As" option to file menu in Numbers version 2.3 (554). I have done this previously but cant remember how its done. My OS is 10.9.3

    How do i create "Save As" option to file menu in Numbers version 2.3 (554). I have done this previously but cant remember how its done. My OS is 10.9.3

    You can follow the steps in this article on TUAW to change the five-key shortcut for Save As… to the old tthree-key shortcut.

  • How can I create a master PDX that pulls from multiple other PDXs?

    I process aviation maintenance manuals, with the individual manuals having their own PDX. How can I create a master PDX that pulls from the individual PDXs?
    I have access to myriad versions of Windows and Acrobat so there's that...

    I’ve got 100s of manuals each with their own PDX. I’ve been asked to create a master PDX that in effect combines all of the individual PDXs into a single (cross-manufacturer, cross-fleet, cross-manual-type) searchable PDX that can be easily updated.

  • How do I create a digital book that fits tablets and computer monitor sizes?

    How do I create a digital book that fits tablets and computer monitor sizes?
    Example: An 8.5 X 11, 2 column Word document with pictures, approximately 100 pages.
    Must I also publish the book in a 5X8 format or does Acrobat have something that will do that for me?

    Starting at the end:
    - When the movie or tv show does transfer onto your iphone/ipod touch you will be able to see it in the expanded view of your device in the "DEVICES" section.
    - If the files are not on your device, then:
         -- confirm you have SD or HD-SD video. HD-only content will not play and probably will not even sync. iTunes seems to reliably have SD versions with their HD distributions so this should not be an issue
         -- confirm you are synch-ing the content to the ipod device by browsing the DEVICE view's Movie or TV Show tabs to confirm the movie or episode is 'checked'
    - If the files are on the iPod and you cannot find them, check your Settings: General for Restrictions.  If you restrict, for example the movies to "G" rating. PG and higher movies will sync but you will not be able to find them on the iPod!

  • How do I  create a pdf file that is only part of an existing pdf file??

    How do I  create a pdf file that is only part of an existing pdf file??

    Use Adobe Acrobat. ExportPDF does not do this, or claim to do this.

  • How do you create a rolling title that ends on a still image of the title?

    How do you create a rolling title that ends on a still image of the title?

    Here's the help page that describes using the tab stops:
    http://help.adobe.com/en_US/PremierePro/4.0/WS35CA53B6-EAFF-499a-A600-DCD85686354Da.html
    Let me know if that's clear as mud and I'll try to shed more light on the subject.
    One thing that isn't specified/clarified/whatever (and was the biggest stumbling block for me when I first tried this in PPro 1.5) is that the ruler for the tab stops is zeroed at the edge of the text box, and tab stops ONLY work in text boxes (or "text area," however you please). At any rate, you have to position that ruler so that the zero point is at the left edge of your text box, and then the rest of the instructions in the help doc will make sense.
    Also, it's useful to show the tab markers while you work. Just go "Title > View > Tab Markers" and you're good.
    Hope this helps!
    As a side, I have found that this one feature is really the best and most useful part of the PPro titler (and also, just about the only function in the titler that WON'T cause your system to crash on a regular basis).

  • In Muse - how do i create a menu of 4 pages off of a second level page?

    In Muse - how do i create a menu of 4 pages off of a second level page?

    I will check the Sub Menu for the Drop Down tomorrow (after the 
    Boston snow).
    As to styling difficulty with the drop down --  I am not succeeding 
    in singling out the Text and then assigning it the State I want.
    I guess that should happen on the 3rd click - right?
    Same with the assignment I want with each State color container. It 
    seems to resist the gradients I want to apply to the text boxes.
    Throughout Muse this general assignment operation I am finding moves 
    along in a "sticky" manner, not smooth fluid operation like AI or 
    PS.  Is that just me or what?
    I have been struggling for some time now -- but I do have my own site.
    Thanks again

  • How to remove 'Create new employee' option for a scenario in org modelling?

    Hi Luke,
    We want to remove 'create new employee' option that appears under 'actions' in details panel for a position in scenario (for org chart).
    I checked in linkconfiguration folder for position, but it doesn't show this option to be disabled. I also checked detailspresentationconfiguration folder but no luck. I am assuming, it must be pretty different to achieve this for a scenario object.
    Please help!
    Thanks,
    Prashant

    Hi Prashant,
    I'm not entirely sure this can be changed. It doesn't appear to be controlled through configuration or XSL. My guess is it is hard-coded.
    Sorry I can't be of more help.
    Best regards,
    Luke

  • How to call dicoverer through menu option in forms

    Hi,
    Need help.........Can anybody tell me .....how to call dicoverer through menu option in forms.
    Thanx
    Sunil

    Hi,
    You can define a Form Function filling the basic information and
    HTML call Set as OracleOasis.RunDiscoverer. You can even define Paramters during the form function registration. With this definition you will able to create a link to a Discoverer workbook that will automatically open Discoverer Plus or Viewer to display the workbook using Apps security.
    Please refer to the following Metalink Note for more details:
    278095.1- How to Create a Link to a Discoverer Workbook in Apps11i
    Hope This helps
    - Sanjeev

Maybe you are looking for

  • Xorg, Catalyst, used the DDX,ForceXXA fix

    Okay, First time using Arch Linux (atleast on a real machine, i tested it and got it 'up and running' in a VM. Couple things that have to be said 1) Great idea behind the distro 2) Installer def made me learn my linux sh*t (or relearn as it came up t

  • K8d master F problem

    Hi, I'm having the following configuration: K8Dmaster F, dual AMD opteron 1,60 GHZ, 1 GB RAM, serial ATa Adaptech 1210 SA card, Seagata 110 GB, CDROM. When I try to install Win2000/XP, after I format the partition from setup, I got the same error alw

  • How to access a dynamic created attribute in a context node?

    <i>Hello,</i> <i>who could help? I can't set a value for a dynamically created attribute which is bind to a table.</i> <i>My context of the view looks as follow (is defined in NetWeaver):</i>   - Context      - Availability (Node)          - vctxServ

  • HOW do I create a NICE enlarged image in a window EFFECT? CS5

    Maybe a long unnecessary title but I'm not sure how to describe it, and I can't find an example at the moment. Basically, I would like to create little image thumbnails which when clicked on bring up an enlarged version of the thumbnail. Basic I know

  • Error in parsing taglib 'NavigationTagLibrary'

    Hello Tiberiu, You have referenced a wrong TLD file, here is the right one: <property name="NavigationTagLibrary" value="/SERVICE/com.sap.portal.navigation.navigationtaglibrary/taglib/TagLibrary.tld"/> Check the link for more help on TLDs: http://hel