How to run new executions with new windows not opening up

I am calling a step inside a for loop (with 50 iterations). Everytime that step gets called, I run it in a separate execution (and as expected, a new excution window also appears for that step). This works just fine and solves my purpose. I am wondering if there's something I can do such that the new window dosen't show up. Even though the window closes by itself when I terminate the execution programatically inside the loop, it would just be better if the new execution window just dosen't show up at all. So am wondering if there's an option somewhere to do that. I do want to keep the main execution window (which has the step that triggers new executions) running though.
This might not be possible, am just putting this question out here to see if it can be done..
Thanks !
Anuj

On the sequence call step, set Settings>>Initially Hidden and Disable Tracing,  in addition to Settings>>Close Window when Done.

Similar Messages

  • New windows not opening in front of previous ones...

    I do not know what happened, but at one point if I was on Safari and had a webpage open and then clicked a link to a new page, it would put the new page on "top" of the previous one(s) which makes sense. Now all of a sudden when I click a link or open a new page it pops up the previous page(s) and I have to close them to find the "buried" new page I want to see. <Edited by Moderator>
    Thanks!
    Casey

    Did you check your preferences to see if they were correct? If you go to Preferences > Tabs, is the box that says "Select tabs and windows as they are created" checked? If not, check the box and then new windows should open in the foreground.
    Mulder

  • New window not opening

    Hi,
    I have used dialog:action in adfc-config.xml to open a page in new window. It is working fine when I'm deploying to Integrated Weblogic Server that comes with JDeveloper. But when I'm deploying the application in a standalone weblogic server it is not working and no error is being reported either. I'm using JDeveloper 11.1.1.7.0
    Can anyone tell me why is it not working and what to do next?

    Hi,
    if you can exclude popup blocker to prevent this from opening in the browser you probably need someone to look at a test case, which may be customer support.
    Frank

  • New windows not opening inside frame when set to do so

    I am using Captivate 3.0 and trying to capture a Web-based
    program.
    Although I have checked the setting to open a new window
    inside the frame, it appears that this is not happening as planned.
    A link to a new web page will open this window outside the red
    frame.
    Any clues as to why this may happen?
    Thanks,
    -Nick

    Hi Nick
    As you have seen, this setting is hit or miss. Sometimes it
    works and sometimes it fails. If it fails, you may always press the
    Pause/Break key to pause recording, move the window into the
    recording area, then press Pause/Break to resume recording.
    Cheers... Rick

  • OBN call : new window not opening

    Hi,
    I have one webdynpro application inside an iview in portal.  Usually when I click a button in that application it should open a new window (done via OBN call).  Now it fails to open a new window.  I do not know why it is not opening.  Is there any browser setting that forbids the open.  But I am sure that no pop up blockers are there.  Even I tried to open by holding the ctrl key and that too dint work.
    pls help me.  thanks in advance.
    best regards,
    suresh.

    Hi,
    if you can exclude popup blocker to prevent this from opening in the browser you probably need someone to look at a test case, which may be customer support.
    Frank

  • When I launch Firefox 5, two (2) windows open: the "What's New" window and a second window with the correct Home Page. How do I stop the "What's New window from opening when I launch Firefox 5?

    Further: I'm running Windows XP.
    This happens every time I open Firefox 5 and began just after I upgraded to 5.0.
    Note: I've tried suggestions from the various posts in this forum from people who have similar problems, but with no luck. The problem still persists. Does anyone have any suggestions ??

    hello, this might happen when firefox is not able to properly save preferences in its profile folder. please try this: Click the menu button [[Image:New Fx Menu]] and then click help [[Image:Help-29]] > troubleshooting information > profile folder - "show folder". then a new window will open up. in this window look out for a file named '''user.js''' (it might be used to overwrite your custom settings). in case it is present , delete or rename this file and restart firefox afterwards.
    for more information and other steps please also see: [[How to fix preferences that won't save]]

  • When i click new window it opens to the right of the screen with 1% showing if i click the green button it than opens in the screen how can i fix

    when i click new window it opens to the right of the screen with 1% showing if i click the green button it than opens in the screen how can i fix

    It's normal for links to open in the same tab as you browse if you left-click. You can Ctrl+click or middle click to open a link in a new tab. Are either of those broken?
    Some sites let you use a regular left click to open a link in a new tab (example: Google search settings), and some add-ons may change link behavior. Can you check whether one of your add-ons has been disabled?
    Tools > Add-ons > Extensions
    Also, if you use the Ask toolbar, try disabling it and see whether that makes any difference.

  • Every time I open a new Window, it opens with a second tab. With "my" top sites. How can I undo this? I made a screenshot, if necessary.

    When I open a new window, it opens 2 tabs. First is the requested url. Second is a tab without an adress. The second tab looks like some kind of touchscreen buttons for smartphones? I guess, it's an Firefox feature.
    I tried about:config and changed browser.newtab.url, checked starting window, etc. etc. Nothing helped.
    How can I keep my Firefox from opening this tab? Please help!
    Greetings from Hamburg, Germany,
    Peter H.

    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Press the '''Alt''' or '''F10''' key to bring up the tool bar.
    Followed by;
    Windows; '''Tools > Options'''
    Linux; '''Edit > Preferences'''
    Mac; ''application name'' '''> Preferences'''
    Then '''Advanced > General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites and see if there is still a problem. Then restart.

  • Contact Form (php)  - how to prevent new window...

    My contact form works just fine, however, I currently have
    the target set to "_blank" which is not what I want.
    Rather than opening the .php file open in a new window, I
    just want to go to a new frame (labeled "success" or "error")
    within my flash file (which currently works fine)
    So, my question is how do I send the form information to my
    php file WITHOUT having to open a new window outside of my flash
    file since I'm sending the user to new frame instead.
    FYI: I've already tried removing "_blank" but it still opens
    the php file in a new browser window.
    My code below:
    on (release){
    var my_lv:LoadVars = new LoadVars();
    my_lv.fullName = fullName_txt.text;
    my_lv.email = email_txt.text;
    my_lv.emailMessage = emailMessage_txt.text;
    if(fullName_txt.text != "" && email_txt.text != ""
    && emailMessage_txt.text != "") {
    my_lv.send("contact.php","_blank","POST");
    gotoAndStop("success");
    else {
    gotoAndStop("error");
    Any help is greatly appreciated.
    Yvonne

    Thanks for your help, Zupko.
    I tried your suggestion but I'm still experiencing the same
    problem. A new window still opens. Perhaps I'm doing something
    wrong?
    My code with your suggestion below:
    on (release){
    var my_lv:LoadVars = new LoadVars();
    my_lv.fullName = fullName_txt.text;
    my_lv.email = email_txt.text;
    my_lv.emailMessage = emailMessage_txt.text;
    if(fullName_txt.text != "" && email_txt.text != ""
    && emailMessage_txt.text != "") {
    loadVariables("contact.php","POST");
    gotoAndStop("success");
    else {
    gotoAndStop("error");
    Your help is very much appreciated!
    Yvonne

  • Tabs only open in a new window. Ctl T opens a new window NOT a new tab help-last update this problem started. How do I set FF back to open tabs in 1 window

    Tabs only open in a new window. Ctl T opens a new window NOT a new tab help-last update this problem started 2 days ago. How do I set FF back to open tabs in 1 window?
    There is no plus sign and going into optins and changing settings has not worked. I have uninstall FF and reinstall-keeping my personalization-and that was no help.
    Right clicking on FF Icon to open a new tab, or going up to FF drop down tab and clicking on new tab both do not work.
    Help everything opens a new window not a new tab. there seems to be no way to reset this or to chose a different optin. I just downloaded new tabs at end addon and it didn't do a thing.

    as a first troubleshooting step - does it work like normally when you open & run firefox in [[Safe Mode|safemode]] by pressing the shift key while you open firefox (all other instances have to be closed before)...

  • You changed the order of the menu for "Open in a new window" or "Open in new Tab", How can I change it back? Or how can I omit any reference to tabs? I do not use them at all.

    You changed the order of the menu for "Open in a new window" or "Open in new Tab", How can I change it back? Or how can I omit any reference to tabs? I do not use them at all.

    You can use the Menu Editor add-on to rearrange or remove menu items - https://addons.mozilla.org/firefox/addon/menu-editor

  • Since installing the latest version... when I open a new window it opens everything I have minimized too... very annoying. How can I fix this, I mimimize to go back to a window not have multiple windows open.

    since installing the latest version... when I open a new window it opens everything I have minimized too... very annoying. How can I fix this, I minimize to go back to a window not have multiple windows open.
    == This happened ==
    Every time Firefox opened
    == after installed last version...

    Well, then isn't there some way to induce Firefox to give Windows parameters that make it open the fershlugginer window in the *same* position, instead of an offset position?
    Dafydd

  • When I open a new window, it opens behind the exist ing window instead of in front of it. How can I fix this?

    When I click on a link and I choose the option to open link in a new window, it opens behind the currently open window instead of in front of it. This is a real nuisance. Why is this happening, and how do I fix it?

    Hi alanbala,
    There are several possible reasons why the new window opens in the background and not in the foreground by default.
    # another installed program is causing this
    # the Firefox main window is set to Always on Top
    # probably a Windows 7 bug
    # possibly a Firefox bug [https://bugzilla.mozilla.org/show_bug.cgi?id=790013 https://bugzilla.mozilla.org/show_bug.cgi?id=790013]
    What you can do is
    # update your Windows 7 to the latest security patches
    # open Mozilla Firefox in Safe Mode (see KB article [[Troubleshoot Firefox issues using Safe Mode]])
    # evaluate the other programs installed on your computer
    # open new links on a new tab
    Let us know your progress. I will be following this support thread.

  • Command-T opens new window not new Tab with Snow Leopard

    Does anyone else have this issue? Command-T opens new window not new Tab with SL.
    And yes all my settings are correct!!

    Greetings,
    If your preferences for Tabs are correctly set (the top two checkboxes are checked) and it's still opening a new window, then it would seem your preferences may be corrupt. In that case, you should quit Safari, go to Home/Library/Preferences and delete the com.apple.Safari.plist file.
    Then restart Safari, setup your preferences again, and test to see if it works.

  • How can I disable the event sound played when a new window is opened?

    When Firefox starts, or when a new window is opened there is an annoying click.
    How can I disable this?
    The only way I have been able to stop it is by disabling all event sounds from the control panel but I'd rather just disable this particular sound.

    No, it's Windows XP. Hmmm, I don't know! I only started noticing it recently and as far as I remember, the only new add on is NoScript. I found the event that was being triggered (Start Connection) and disabled the sound in Windows. So the problem is solved in that I don't have the annoying sound ... but don't know why it started and hope nothing sinister is going on.

Maybe you are looking for