Playing a prompt while another process is running in the background

I'm running ICM 6 with IP IVR Queue Manager 3.5.
I've built a couple of scripts that take input from callers and then uses the input to query a database.  Sometimes it takes a few seconds to return with a response so I want to play music or a prompt while it retrieves the data.
Is this possible with Queue Manager?
thanks

I haven't used anything earlier than 4.0 so I'm unsure of any idiosyncrasies between that and 4.0 but I assume this would still be possible so what I'd do is just place the call on hold before you do the DB dip and then after it's done take the call off hold and do whatever treatment you need to.
Cheers,
Nathan

Similar Messages

  • Icloud cpanel for outlook starts, but nothing appears on the monitor. The process is running in the background.

    The process is running in the background. However nothing appears on the screen for you to alter your settings.
    I have windows 7 64-bit and outlook 2010.
    It was working, but just stopped after several months. I have un-installed and re-installed several times, to no avail.
    Please help.

    I have sorted it now, thank you.
    Re-installed older version of icloud, and then updated the software throught the apple software updater.
    This re-solved the issue.

  • Calling a VI to run in the background

    Hey, can anyone help me with this:
    I have a vi which is eseentially a sequence (though I do not use a sequence
    primitive). At one point during my sequence, I need to launch another VI
    that goes and does its own thing. Then, the calling VI (the original one)
    has to finish a few steps, while the other VI is doing its own thing. I
    have no experience using the 'VI Control' primitives on the controls
    pallete, so if anyone has experience with this, could you please help me
    out?
    Essentially, I need to run two VI's at once. I know how to do that in terms
    of making each while loop have a 'Wait for Milliseconds' within the loop so
    that the currently executing loop does not hog the processor, I just don't
    know how to launc
    h another VI to run in the background from within a VI.
    The only way that I have done this in the past is to call a VI as a
    subroutine, have it do its task, and then return to the calling VI.
    Any ideas?
    Thanks,
    Wes
    [email protected]

    Wes,
    Apart from calling a VI as a sub-vi you can use VI Server to call another VI. The VI you are calling can be on the same machine or could be called remotely from another machine.
    There are a few examples on using VI Server you may find helpful. If you go to the Resource Library in NI Developer Zone http://zone.ni.com/libraries/ and then go to LabVIEW-Connectvity-VI Server you should find quite a few examples.
    One that is pretty simple and useful is titled - Programmatically Opening and Running One VI from Another Using VI Server
    In the diagram of the This.vi you'll see that there is an invoke node that is calling a Run VI method, the parameter for the method is Wait Until Done. By setting this to true you can ensure that the VI you are calling completes executi
    on before the next VI (with flow being controlled through the error cluster) executes. If you set it to false the VI will go off and run and you can continue doing things independently.
    Do be careful in case you are getting into situations where you might be calling the same VI again before the previous call has completed. If that is a possibility mark the VI as re-entrant, this is wether you're using VI server or just calling the same sub-vi multiple times in another VI. If you don't set the VI up to be re-entrant you run the risk of the same data space being used for different calls.
    Regards,
    Kamran

  • Running in the background

    Is it possible to make a java program that runs as a background process, maybe with a nice little system tray icon for kicks?
    I've heard that this is impossible, but I wanted to double check.

    Thanks, but the system tray part of that question was more of a quip than an actual question. What I was really wondering was how to make a process that runs in the background, without a window or anything (except a nifty system tray icon that I can make now).

  • How can one process "ask" if another process is running?

    Hi there,
    This is a very general question: how can one process "ask" if another process is running?
    In other words, what 2 process share together.
    Thanks for any help.

    This code will print all active Threads.
    Look at at the API docs for further information.
    ThreadGroup tg=Thread.currentThread().getThreadGroup();
            while(tg.getParent() != null)
                tg=tg.getParent();
            tg.list();

  • LabVIEW closes while VI's are still running in the background

    I have created a large application that is split between VB 6 and LV 6.1. The LabVIEW portion runs in the background, except that the VB portion can request that a LabVIEW user interface be presented on demand. Any time after this LabVIEW user interface has been opened and closed, opening and closing another application (or even just hiding a top-level window in another application) will cause LabVIEW to close, taking my background processing with it.
    If the LabVIEW code is running as source code, LabVIEW prompts me before closing. However, when the LabVIEW code is running as an executable (.exe), the executable closes without prompting in this circumstance.
    The scenario can be reproduced with a standard LabVIEW sample program. Proceed as follows:
    1) Open VBToLV.vbp (the example program distributed with LabVIEW 6.1).
    2) Start the VB program running.
    3) Press the Launch LabVIEW button on the user interface of the VB program.
    4) Enter an expression in the text box provided.
    5) Select Display VI Front Panel.
    6) Press the Run VI button.
    7) Close the VI front panel by clicking its "X" button.
    8) Open any handy application, such as Windows Explorer or Notepad.
    9) Close this most-recently-opened program.
    10) The LabVIEW Exit screen appears.
    11) Exit LabVIEW.
    12) Press the Run VI button.
    13) An error occurs because LabVIEW has closed.
    If the LabVIEW code had been built into an executable and called accordingly, there would have been no LabVIEW exit screen. The executable would have just exited silently.
    This is not the way a COM server is supposed to behave. The VB program is still holding a valid reference to the server and it should remain open.
    It appears that LabVIEW is monitoring the total number of top-level windows that are open. I suppose that this is how LabVIEW figures out when its own FP windows have been closed. In this case, it doesn't notice that all of its windows have been closed until some other window closes.
    I have a work-around, but it's ugly.
    Ron Martin
    Balance Technology Inc.

    Hi,
    Perhaps you use references to windows in LabVIEW. If you get those
    references with a full path (e.g. c:\code\subvis\vi1.vi), this will work
    while in LabVIEW environment. But when an application is build, this will
    fail, because the vi is no longer there. Try using the name in a string
    instead (the OpenVIReference is polymorphic) with only the name of the vi in
    it (e.g. vi1.vi).
    There are some other isues that change when building an application. Most of
    them are paths that change, and references that fail to open because of
    them.
    Regards,
    Wiebe.
    "cpuwzd" wrote in message
    news:[email protected]...
    > I have created a large application that is split between VB 6 and LV
    > 6.1. The LabVIEW portion runs in the background, except that the VB
    > portion can request that a LabVIEW user interface be presented on
    > demand. Any time after this LabVIEW user interface has been opened
    > and closed, opening and closing another application (or even just
    > hiding a top-level window in another application) will cause LabVIEW
    > to close, taking my background processing with it.
    >
    > If the LabVIEW code is running as source code, LabVIEW prompts me
    > before closing. However, when the LabVIEW code is running as an
    > executable (.exe), the executable closes without prompting in this
    > circumstance.
    >
    > The scenario can be reproduced with a standard LabVIEW sample program.
    > Proceed as follows:
    >
    > 1) Open VBToLV.vbp (the example program distributed with LabVIEW 6.1).
    > 2) Start the VB program running.
    > 3) Press the Launch LabVIEW button on the user interface of the VB
    > program.
    > 4) Enter an expression in the text box provided.
    > 5) Select Display VI Front Panel.
    > 6) Press the Run VI button.
    > 7) Close the VI front panel by clicking its "X" button.
    > 8) Open any handy application, such as Windows Explorer or Notepad.
    > 9) Close this most-recently-opened program.
    > 10) The LabVIEW Exit screen appears.
    > 11) Exit LabVIEW.
    > 12) Press the Run VI button.
    > 13) An error occurs because LabVIEW has closed.
    >
    > If the LabVIEW code had been built into an executable and called
    > accordingly, there would have been no LabVIEW exit screen. The
    > executable would have just exited silently.
    >
    > This is not the way a COM server is supposed to behave. The VB
    > program is still holding a valid reference to the server and it should
    > remain open.
    >
    > It appears that LabVIEW is monitoring the total number of top-level
    > windows that are open. I suppose that this is how LabVIEW figures out
    > when its own FP windows have been closed. In this case, it doesn't
    > notice that all of its windows have been closed until some other
    > window closes.
    >
    > I have a work-around, but it's ugly.
    >
    > Ron Martin
    > Balance Technology Inc.

  • Firefox is running in the background, but the process can't be ended using the task manager?

    The program wouldn't open because it was apparently still running in the background, so I restarted a few times which didn't help. Then I tried using the task manager to end the process but that didn't work either. Then opened the command prompt and used taskkill, then pskill (using the PID number) but neither worked. The problem wasn't with how I was using these commands as they could close any other program I had running, just not firefox.exe*32. Any ideas?

    Try:
    *http://kb.mozillazine.org/Firefox.exe_always_open

  • I keep having to restart my computer. It say firefox is running in the background but I cannot load another page

    I keep getting the message that Firefox is running in the background and I cannot load another page. I have to restart my computer to get Firefox back to operating normally. I have everything closed down as far as I can tell. But when I click on the Icon it will not start another page. It just keeps telling me to shut down all browser windows and that Firefox is running in the background. I even go to ctrl/alt/delete and look at the tasks running. Nothing! It is happening a lot more often now and I hate to use Internet Explorer. I have depended a lot more on Mozilla in the past few years now and I like it. This is driving me nuts. Please help. Thank You

    Did you check the Processes tab in the Task Manager?
    See "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * [[Firefox hangs]]

  • Hi.. I am reinstalling ios on macbook. While doing process, it asks for the Apple id and password. I am providing the id but it displays the message that apple user id has not been used with apple store... what shall I do to make my id work. Please assist

    Hi.. I am reinstalling ios on macbook.
    While doing process, it asks for the Apple id and password. I am providing the id/password but it displays the message that apple user id has not been used with apple store... what shall I do to make my id work. Please assist

    Just to clarify, iOS is the operating system for iOS based devices such as the iPod touch, iPhone, and iPad.
    Your Mac runs on OS X.
    As for your Apple ID, help here >  Using an existing Apple ID with the iTunes Store, Mac App Store, and iBooks Store

  • Process of Adobe Reader XI, is running in the Background, after closing.

    Hi,
    when I close the Adobe Reader XI, the Process is still running in the Background of my System. The Process needs a lot of CPU an after some moment my System is slowing down rapidly.
    Windows 8 (64-bit)
    Adobe Reader 11.
    What's to do?
    Greetings

    Same exact same situation happened to me with Windows 8 64 bit, Adobe XI .
    the CPOU is slowing down and is heated. the fans s running all the time. the only solution was for me to end the processes from the taks bars (one process per adobe file open !!!)
    somethign is definitely wrong; but don't know if it is Windows 8 or Adobe; I thing it is Adobe issue.

  • The hotkey for Private Browsing ( CTRL Shift P ) interferes with another program I have running in the background. Is there a way to disable or change the Firefox Hotkey?

    Question:
    The hotkey for Private Browsing (<CTRL><Shift> <P>) interferes with another program I have running in the background. Is there a way to disable or change the Firefox Hotkey?

    You can try this extension:
    *Customizable Shortcuts: https://addons.mozilla.org/firefox/addon/customizable-shortcuts/

  • Process runs in the background and shown as an icon next the clock (how to?

    Hi guys,
    I have a program that runs in the background (a daemon). It refers to a database and make some calculations. If it's not activated, the database will lack some critical information. For this propose, I eliminated the closing option from the user (it's a gui); so if the user wants to close it he must terminated the application from the 'window task manager'.
    Question: how can I place this process as a small icon next to the clock on the lower right side? I don't want the process to be shown on the taskbar.
    Thanks for any idea
    Peter

    https://jdic.dev.java.net/
    The JDesktop Integration Components (JDIC) project aims to make Java� technology-based applications ("Java applications") first-class citizens of current desktop platforms without sacrificing platform independence.
    This demo application demonstrates functionality in the JDIC APIs org.jdesktop.jdic.tray package.
    It creates a tray icon on the desktop (in the System Tray Area for Windows platforms, or in the Notification Area for Unix platforms), with a caption (text), an animated icon, and an associated Swing menu containing icons. It also has a tooltip displayed when the mouse hovers over the tray icon.

  • I have a flash game I want to run in the background while surfing other tabs. When I change tabs the game automatically pauses. How can I stop this.

    Is this a flash issue or can I force this game to run in the background somehow.

    Does this also happen if you run that game in another window?
    You can tear off a tab to a new window by slightly dragging the tab down in the browser area.

  • Capture keystrokes while VI running in the background.

    Hi
    I have a VI that needs to run in the background, however I need it to be able to recognize a certain string when typed in on the keyboard, actually it's a barcode reader - same difference. I have tried to use the keyboard.zip file from the ftp site however the VI's don't seem to work unless they are in focus. How do I do this with the program running in the background??
    Thanks
    Jacob Thastrup
    BioImage A/S
    www.BioImage.dk

    Jacob,
    Get the VI called Get Keys.vi (or something alike) from our online (free)
    library, www.air.nl. Maybe it needs some small modifications, but it should
    do the job.
    However, barcode scanners are not exactly the same as user input. In theory,
    yes, in practice, no. Problem is they are very fast. So, you have to scan
    the keyboard very fast. Probably too fast (e.g. it's not possible to obtain
    all characters from the scanner).
    Fortunatlly barcode scanners often have possibilities to add a delay between
    characters. Set to a delay of 50 ms (or experiment, until perfect..) and it
    should work.
    The VI gets keys even if another application is active.
    Regards,
    Wiebe Walstra.
    AIR technical Automation
    www.air.nl
    "jact" wrote in messa
    ge
    news:[email protected]..
    Thank you for your fast reply. However as far as I could get it to
    work it still required me to have a VI in focus. The program running
    in front is not a Labview VI so I'm still stuck any other suggestions?
    Thanks
    Jacob Thastrup

  • The installation cannot proceed, because some of the processes are running.  The Installation failed

    When attempting to install Acrobat 11 Professional the following came up The installation cannot proceed, because some of the processes are running.
    The Installation failed
    The installer encountered an error that caused the installation to fail.
    Contact the software manufacturer for assistance.

    If the processes are listed, turn them off before intiating the installation.  Usually these processes are something running in the background, and can include virus protection.  Here are some links that can help close the background programs:
    Closing Programs Interfering with Installation
    PC - Task Manager: (CTRL-ALT-Delete)
    http://support.microsoft.com/kb/323527
    Mac - Activity Monitor:
    http://osxdaily.com/2010/08/15/mac-task-manager/

Maybe you are looking for

  • Error using dbms_stats.drop_extended_stats

    Hi! I have the following problem: I want to drop extended stats and i get the following error: SQL> begin 2 dbms_stats.drop_extended_stats ( 3 ownname => 'ORAP' 4 ,tabname => 'TDORGEH' 5 ,extension => '(O2_KOE||''*'')' 6 ); 7 end; 8 / begin FEHLER in

  • Awesome menu not working?

    Hey! I installed Awesome, > sudo pacman -S awesome and then went about trying to get some sort of launcher up and working, in this case the built-in "awesome-menu", by following these steps. > mkdir .awesome > cd .awesome > touch menu > nano menu The

  • Migartion from CM 4.2(1) to CM5.1.2

    Hello, From the cco i have found that its not possible to migrate a callmanager 4.2.1 with a data migration tool to callmanager 5.1.2b. Can any ony confirm this. Many thanks

  • Submit data to an ABAP program from an offline form

    Hello Forms experts, the requirement goes like this: I have an internal table that will be passed to the form (via interface context) in the form the data will be changed by the user and the changes must be reflected in the internal table.- I have to

  • Javax.servlet.ServletException: java.lang.OutOfMemoryError: PermGen space

    Open the console link I have following error: Error opening /jsp/contentheader/ContentMenu.jsp. The source of this error is: javax.servlet.ServletException: java.lang.OutOfMemoryError: PermGen space     at weblogic.servlet.internal.ServletStubImpl.ex