New tab cancels loading of previous tab

Is there a workaround to this scenario?
I have two URLs I'd like to open. I type the first URL in the main window. While it's still loading, I type Command-T for a new tab and type in my second URL. Meanwhile, the first URL stopped loading as soon as I launched the new tab.
By contrast, in Chrome I could quickly type 10 URLs in separate tabs and they're all loading at the same time.

Hi,
with BADI_FDCB_SUBBAS04  you can only display the new subscreen in "Basic data tab".
I do not know if it is possible to create a new tab in header of MIRO transaction.
check this:
http://wiki.sdn.sap.com/wiki/display/Snippets/Displaycustomerfieldsinheaderoflogisticsinvoiceverification+transactions
Best regards.

Similar Messages

  • Even though set to open to home page, Firefox always opens in a new tab and to the previous tabs. All settings seem correct. I just want it to open in a new window to my home page

    I cannot open Firefox in a clean new window to the home page. Options are set to open to home page and open new window in new tab is deselected. I do not want my history coming up every time I open. All new pages come up in a new tab with the existing one staying put.

    This happens when I have multiple windows open. I have one window minimized on the task bar. I then launch a new firefox window and start surfing, opening multiple tabs in that window. Then I close that window. (My original window is still minimized in the taskbar). Now, I launch a new firefox window and the tabs that I had opened in the window I had just closed are all back.
    If I close all windows and then launch firefox, it goes to my home page.
    FYI, I'm running Windows 7 64-bit.

  • New Tab overwrites Values in Previous Tab

    My basic setup is a main Panel that can hold a number of tabbed panels.
    Each tabbed panel has only one scrollpane, which is populated by a table.
    The number of tabs is dynamic, and added on the fly.
    Adding new tabs works fine, naming is correct.
    The issue I encounter is that the results in the table 1, scrollpane 1 get overwritten immediately with the creation of the new tab.
    So if i end up with 3 tabs, they all ahve the same data, even though I can watch them populate with the correct data.
    I hope that was understandable., heres a piece of the code i believe the culprit.
    private void createStatusTab(Object[][] results,int cacheNumber) {
                 // some reason second tab overwirtes bvalyues for both...
                   // TODO Auto-generated method stub
                 //for(int cc=1;cc<=cacheNumber;cc++){
                           // make new tab
                           JPanel cacheResultsPanel = new JPanel();
                           GridBagLayout layout = new GridBagLayout();
                           cacheResultsPanel.setLayout(layout);
                           outputPanel.addTab("", cacheResultsPanel);
                           DateFormat dateFormat = new SimpleDateFormat(
                                   "MM/dd/yyyy 'at' hh:mm a z");
                           String dateTime = dateFormat.format(Calendar.getInstance().getTime());
                           outputPanel.addTab("Cache Cleared - Results: "+environment.getName(),cacheResultsPanel);
                           outputPanel.setSelected(cacheResultsPanel);
                           JPanel progressSubPanel = new JPanel();
                           GridBagConstraints c = new GridBagConstraints();
                           c.gridx = 0;
                           c.gridy = 0;
                           //c.weightx= 1.0;
                           //c.weighty= 1.0;
                          /* cacheResultsPanel.add(progressSubPanel, c);
                           progressSubPanel.add(new JLabel("Progress:"));
                           progressSubPanel.add(progressBar);
                           progressBar.setValue(0);
                           progressBar.setStringPainted(true);*/
                          outputPanel.addTab("Cache "+cacheNumber,cacheResultsPanel);
                          outputPanel.setSelected(cacheResultsPanel);
                          // works but uses one panel
                         JScrollPane tempPane= fillTable(results);
                          cacheResultsPanel.add(tempPane);
                          cacheResultsPanel.updateUI();   
                          LOG.debug("Tab: "+cacheNumber+" Added");
                 //}// end for each cache
              }the filltable method where the scrollpane is created froma table.
    private JScrollPane fillTable(Object[][] finalResults) {
                   // TODO Auto-generated method stub
                 Object[] columns =cacheDetails.keySet().toArray();
                  resultsTable=new JTable(finalResults,cacheDetails.keySet().toArray());
                  LOG.debug(cacheDetails.keySet().toString());
                  LOG.debug(cacheDetails.values().toArray().length);
                 resultsTable.setDragEnabled(true);
                 resultsTable.setPreferredScrollableViewportSize(new Dimension(700,400));
                 resultsTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
                 resultsTable.setAutoscrolls(true);
                 //set column sizes
                 TableColumn column = null;
                 int size=cacheDetails.size();
                 for (int i = 0; i < size; i++) {
                      //int length=finalResults[0].toString().length()*8;
         int headerLength=columns[i].toString().length()+1;
         int detailLength=finalResults[0][i].toString().length()+1;
         int length=0;
         if(headerLength>detailLength){
              length=(headerLength)*8;
         }else{
              length=(detailLength)*8;
    column = resultsTable.getColumnModel().getColumn(i);
    column.setPreferredWidth(length);
    JScrollPane scrollPane=new JScrollPane(resultsTable,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
    return scrollPane;
               i end up with all tabs being filled with the same scroll panel. how do i make them independent and dynamic like the tabs.  is the table or the scrollpane the culprit?
    Thanks!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I made a new class called TabBuilder. TYhis class is called as a new instance everytime i call it.
    Stilll I have issues,
    class TabBuilder{
             public void createStatusTab(Object[][] results,int cacheNumber) {
             // some reason second tab overwirtes bvalyues for both...
              // TODO Auto-generated method stub
                      // make new tab
                      JPanel cacheResultsPanel = new JPanel();
                      GridBagLayout layout = new GridBagLayout();
                      cacheResultsPanel.setLayout(layout);
                      outputPanel.addTab("", cacheResultsPanel);
                      DateFormat dateFormat = new SimpleDateFormat(
                              "MM/dd/yyyy 'at' hh:mm a z");
                      String dateTime = dateFormat.format(Calendar.getInstance().getTime());
                      outputPanel.addTab("Cache Cleared - Results: "+environment.getName(),cacheResultsPanel);
                      outputPanel.setSelected(cacheResultsPanel);
                      JPanel progressSubPanel = new JPanel();
                      GridBagConstraints c = new GridBagConstraints();
                      c.gridx = 0;
                      c.gridy = 0;
                      //c.weightx= 1.0;
                      //c.weighty= 1.0;
                     /* cacheResultsPanel.add(progressSubPanel, c);
                      progressSubPanel.add(new JLabel("Progress:"));
                      progressSubPanel.add(progressBar);
                      progressBar.setValue(0);
                      progressBar.setStringPainted(true);*/
                     outputPanel.addTab("Cache "+cacheNumber,cacheResultsPanel);
                     outputPanel.setSelected(cacheResultsPanel);
                     // works but uses one panel
                    JScrollPane tempPane= fillTable(results);
                     cacheResultsPanel.add(tempPane);
                     cacheResultsPanel.updateUI();   
                     LOG.debug("Tab: "+cacheNumber+" Added");
             }// end mehtosd
             private JScrollPane fillTable(Object[][] finalResults) {
                   // TODO Auto-generated method stub
                 Object[] columns =cacheDetails.keySet().toArray();
                  resultsTable=new JTable(finalResults,cacheDetails.keySet().toArray());
                  LOG.debug(cacheDetails.keySet().toString());
                  LOG.debug(cacheDetails.values().toArray().length);
                 resultsTable.setDragEnabled(true);
                 resultsTable.setPreferredScrollableViewportSize(new Dimension(700,400));
                 resultsTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
                 resultsTable.setAutoscrolls(true);
                 //set column sizes
                 TableColumn column = null;
                 int size=cacheDetails.size();
                 for (int i = 0; i < size; i++) {
                      //int length=finalResults[0].toString().length()*8;
         int headerLength=columns[i].toString().length()+1;
         int detailLength=finalResults[0][i].toString().length()+1;
         int length=0;
         if(headerLength>detailLength){
              length=(headerLength)*8;
         }else{
              length=(detailLength)*8;
    column = resultsTable.getColumnModel().getColumn(i);
    column.setPreferredWidth(length);
    JScrollPane scrollPane=new JScrollPane(resultsTable,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
    return scrollPane;
    }// tab builder class
    Calling CodeTabBuilder newTab= new TabBuilder();
                   newTab.createStatusTab(finalResults, i);Edited by: Masterkeedu on Oct 15, 2007 8:09 AM
    Stupid { code } tags..honestly, stupid.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Link opens new tab AND loads in current tab

    My wife's iPhone 5 is doing something odd. if she clicks on a link, it opens in that tab AND opens it in an additional tab. is there any way to stop it from doing /both/ of those? one is enough!

    What site?
    What links?
    I haven't seen such a problem on my iPhone 5.

  • FF29.0 crashes when loading with tab groups, loads fine without tab groups. WHY?

    I have about 16-18 tab groups (at least I did in FF28.0). When updating to FF29.0, FF crashed EVERY time when trying to load. I finally did a fresh reinstall of FF29.0. After reinstalling my 18 add-ons, I ran Session Manager and loaded a session from before I had updated to 29.0. It had all my tab groups! WOW, it loaded. Well, it loaded ONCE. It never loaded again. Crashes every time. I have saved sessionstore.bak and sessonstore.js at various times. I copied one from before the crashes and FF29.0 works just fine. It just won't work with all/any of my tab groups. Crashes every time while loading. If it won't work with my saved tab groups, I will be forced to go back to FF28.0. That would not be progress.

    Hi,
    Some of your reports are not complete which means something is causing the reports to not be uploaded fully. Please follow the steps to ensure your crash reports can be uploaded and your crashes stop.
    #Stop your antivirus and scanners temporarily
    #Disable hardware acceleration. See [https://support.mozilla.org/en-US/kb/troubleshoot-extensions-themes-to-fix-problems#w_turn-off-hardware-acceleration Turn off HA]
    If that doesn't work then create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer some files from an existing profile to the new profile, but be careful not to copy corrupted files.
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • If you check the don't show this again box when closing multiple tabs, how do you get it to warn you when closing multiple tabs, or to save previous tabs? Checking the warn me when closing multiple tabs box under tools/tabs does not work to solve this?

    I accidentally checked the do not ask me again box when closing multiple tabs. Now I no longer get a warning when closing multiple tabs, and it saves my previous session. I have tried checking and un-checking the warn me box under tools which has not worked. If I open a second window and try to close multiple tabs it will warn me but not on the first window.

    You can reset the warn prefs on the about:config page via the right-click context menu.
    browser.tabs.warnOnClose , see http://kb.mozillazine.org/About%3Aconfig_entries
    browser.warnOnQuit , see http://kb.mozillazine.org/browser.warnOnQuit
    browser.warnOnRestart , see http://kb.mozillazine.org/browser.warnOnRestart
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />

  • Firefox crashes computer shuts down and tabs are lost. restore previous tabs was activated. how to restore tabs from yesterday

    I also tried some of the suggestions in forum. There are no files found that match sessionstore.js file appdata etc. How do I recover tabs? Windows 7 pro and most recent firefox.

    [About:sessionrestore] and please also see: [http://mzl.la/MIUY4q How to restore my session]

  • Always have 2 FF15.0.1 tabs and start w/previous tabs/win. Any time I start FF the second window always looses the 1st tab and places the "+" to the far left.

    When I close FF the window that is active becomes window #1 when I restart. No matter which one becomes window #2 the first pinned tab is missing and the "+" is on the far left. Same occurs if the tabs are not pinned. If I close FF and cause a switch between W#1 and W#2, W#2 loses that 1st tab and in W#1 the missing tab reappears.

    hello ppsffvt, it sounds like an extension might be interfering here. please try launching firefox in safe mode once and see if the issue is occurring there too.
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • How can you set up a custom keyboard shortcut for Next Tab and Previous Tab?

    You can do this in Chrome because there is a top menu item for it, and OS X supports easily rebinding of keyboard shortcuts that are in the main menus.
    Is this possible in Firefox? Using a two handed shortcut to switch tabs is annoying when you want to keep one hand on the mouse!
    Thanks!

    Keyboard shortcuts
    * https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts
    -> Next Tab
    * Ctrl + Tab
    * Ctrl + Page Down
    -> Previous Tab
    * Ctrl + Shift + Tab
    * Ctrl + Page Up
    Check and tell if its working.

  • Why will Firefox allow me to have multiple tabs available, but not allow me to switch between tabs, and can only look at a new tab by closing the previous one?

    Whenever I open a new tab, it appears on the tab bar where it should, but if I click on it nothing happens, the tab won't open, and I can't switch between multiple tabs. The only way to get to a new tab is to close the one I am currently on, and even then it will only open the next tab in order of precedence, so I can not even choose which tab is the next to view. This problem is making it impossible to use firefox as a research tool which requires fast switching back and forth between multiple tabbed pages simultaneously.

    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings, disables most add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    *In previous Firefox versions, click on the Firefox button at the top left of the Firefox window and click on ''Help'' (or click on ''Help'' in the Menu bar, if you don't have a Firefox button) then click on ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • New tabs are not updating the names of the sites they have loaded. When I open a new tab and load a site, the tab simply stays named "New Tab". When I open a link in a new window, it shows "Connecting..." even while its fully loaded.

    New tabs are not updating the names of the sites they have loaded. When I open a new tab and load a site, the tab simply stays named "New Tab". When I open a link in a new window, it shows "Connecting..." even while its fully loaded.

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * [[Troubleshooting extensions and themes]]

  • Add new tab button does not appear at the right of the previous tab

    Just upgraded to Firefox 4 and the plus sign (T) for a new tab does not appear on the right of the previous tab as it had in earlier versions. I thought it was there briefly after I upgraded but it's not there anymore. How do I get it back? I did download the extension "new tab at the end" but that didn't help....

    That button should be available by default. However, if you use tab related Add-ons it may not show up as expected. You can add it back by right clicking on the navigation bar, clicking Customize, then drag the New Tab icon to the right end of tab bar.
    If that doesn't work, please try starting Firefox in Safemode to see if add-ons are indeed interfering.

  • How do you have Google searches appear in new tab? This was previously not a problem, but it changed and I cannot return the setting. Any ideas?

    How do you have Google searches appear in new tab? This was previously not a problem, but it changed and I cannot return the setting. Any ideas?

    I recently purchased a second hand new macbook air, although it was second hand to me the previous owner had never actually turned it on.
    Something doesn't make sense here, though I'm not saying the previous owner is lying....
    Time to send your serial # to iTS and let them see what's happening here.
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • When entering a new website it overrides the previous site, how can i get it to open a new tab instead

    I DON'T KNOW THAT THIS IS A PROBLEM, I JUST THOUGHT THAT IF THERE IS A WAY TO OPEN A NEW TAB EACH TIME YOU ENTER A NEW WEBSITE WITHOUT OVERRIDING THE PREVIOUS ONE. YOU WOULDN'T HAVE TO REMEMBER TO ENTER THE PLUS SIGN EACH TIME YOU WANT TO OPEN A NEW WEBSITE.

    The setting in Tools > Options > Tabs: "New pages should be opened in": "a new tab/window" is for links that specify a target window to open the link.
    That option allows to divert such links to a new tab instead of a new window.
    For links that do not specify a target use a middle-click or hold down Ctrl and left-click the link or use the right-click context menu to open the link in a new tab or window.<br />
    Left-click a JavaScript link to avoid getting a blank tab.

  • I open facebook or other site. right click link/photo to open in new tab quickly. Then all tab connection will be connection to website, all page stop loading. Have to close firefox and reopen then only site will load.

    I open facebook or other site. right click link/photo to open in new tab quickly. Then all tab connection will be connection to website, all page stop loading. Have to close firefox and reopen then only site will load.

    You can override how links are opened via the browser.link.open_newwindow.override pref.
    *http://kb.mozillazine.org/browser.link.open_newwindow
    *1: current tab; 2:new window; 3:new tab;
    Use this for links opened via JavaScript.
    *http://kb.mozillazine.org/browser.link.open_newwindow.restriction
    See also:
    *http://kb.mozillazine.org/Prevent_websites_from_disabling_new_window_features

Maybe you are looking for