Problem with popup (new window)

Hi Experts,
We have URLs links in the Easy Access Menu. The browser window is now being opened without scrollbars, IE navigation buttons, nothing!
If the URL is called without using the WEBGUI, everything is fine.
Do you have a solution for this?
Thank you,
MR.

Hi Matheus,
You should have a look at SAP note 1296459: SAP GUI for HTML: Opening a new browser window. You will need to add parameter ~newWindowAttributes at the GUI Configuration in your WEBGUI service (via SICF). The value should be:
resizable=yes,scrollbars=yes,toolbar=yes,menubar=yes,titlebar=yes
or a variation of that.
I hope this helps,
Cristiano

Similar Messages

  • Problem with opening new window

    Hi All,
    I am facing peculiar problem in my page.
    I have two pages, one is having a custom search RN and a table RN below of it and another is a details page.
    Table RN is having one check box and any open button for each row and after clicking on open it is opening one details page in new window.
    Now, suppose I check one row and then click on the open button,it is opening details page, then after closing the details page window, if unchecked that row or check any other row, it is refreshing the table RN, means number of rows is increasing, some rendered fields are not working. But if I use some different link, like Google instead of my details page link, it is working fine.
    I have used Destination URI and Target Frame for that open button.
    I have not used any session variable in both the pages.
    If I use Google link, after clicking on open button, it is not calling processRequest, but if I use my details page link, after clicking on open button, it is calling processRequest when I close the details page and check or unchecked the box.

    Hi Ranita,
    Its refreshing the table because in processRequest you might be executing the VO.
    If you do not want processRequest to be again, you can set some session variable and check its value in processRequest to bypass the execution.

  • NWBC 1 - Problem with open new windows

    Hi guys,
    i use NWBC-Version: 10000.1.14.817 and have the follwing problem.
    When i start a new window from an apllication (example show documents) than the new window opens in a separte small window.
    Why can i get the new window as a part of the naviagtion menu (on the horizontal position in the canvas) or the size of the new separate window more bigger?
    Kind regards,
    Dominik

    Hi,
    According to my experience, the problem like store game app open failed probably caused by hardware driver. such as Audio and Graphic driver. So, first of all, please try to reinstall these two driver to fix this problem for test.
    In addition, for SFC scan failed problem, it can be caused by many reasons, I would suggest you use another command to fix your system for test.
    Dism /Online /Cleanup-Image /ScanHealth
    Also you can test SFC command in Windows 8.1 safe mode.
    Thirdly, if problem persists, please check Event Viewer, generally speaking, it would record the app open failed events.
    Roger Lu
    TechNet Community Support

  • Problem with popup conformation windows in SAP XI 7

    Dear XI community,
    in our company we have installed the latest available release of SAP XI (nw2004s) and I have the following problem. When the system (web interface) try to display a popup window in order to confirm the user actions as for example the deletion of a technical system, then the system freeze and the only acceptable action you can do is to refresh the web browser. The action that the user has done is not completed.
      Does anyone have meet the same problem and is there any suggestion for this ?
      Thanks in advance
         John Syrigos

    Which browser are you using ?
    IE7 has some problem...
    Regards,
    Sandro

  • Anyone else having problems with popups since the new security upgrade? can't get rid of them

    anyone else having problems with popups since the new security upgrade? can't get rid of them

    You may have inadvertently installed adware. You do not need to download or install anything to fix it. It ought not to be related to any Apple security update.
    For a description of how this may have occurred, how to avoid it in the future, and for Apple's recommended actions read How to install adware. Apple's instructions are linked in the Recovery Procedure near the end of that document. Read and follow them carefully. Pay particular attention to the easily overlooked passages directing you to restart your Mac when required.

  • I am having problems when i have minimized windows and try to open a new window it will open all minimized windows along with the new window. It just changed when mozzilla updated. It did not do this before the update.

    I am having problems when i have minimized windows and try to open a new window it will open all minimized windows along with the new window. It just changed when mozzilla updated. It did not do this before the update. Before the update if i had minimized windows they would stay minimized when i opened a new window. Please help ,I would guess it is just a setting somewhere but i cannot figure out where the setting is. Thanks jason

    This issue can be caused by the ASK.com Toolbar.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration 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.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • OnScreen windows problems with the new MacBook Pro (see pictures)

    Hi Everyone,
    For the beginning, please excuse my bad english i am more fluent in french ...
    I have some problems with the onscreen windows (pictures = 1000 words !) :
    With explanation
    http://img17.imageshack.us/img17/425/captureecran001.png
    Without but same problem ...
    http://img806.imageshack.us/img806/1007/captureecran002.png
    http://img215.imageshack.us/img215/2059/captureecran003.png
    http://img839.imageshack.us/img839/8513/captureecran004.png
    Somebody have any ideas ?
    Thanks in advance
    MB

    So this only appears in advisory/confirmation windows and nowhere else, i.e. you never see it across documents or images or in other situations ?
    First suggestion is to try re-installing the latest 'combo' 10.6.6 updater and see if that changes anything.
    http://support.apple.com/downloads/DL1349/en_US/MacOSXUpdCombo10.6.6.dmg

  • Can you open a second jsp page as popup/new window?

    Hi all gurus!
    I have a question regarding popups/new windows in an iview application. Instead of starting with a question let me instead describe what I want to do.
    We have a jsp page that presents a search and then the search result in a table where one column is "clickable". When the user clicks a cell a server round trip retreives data specific for that cell value. This is standard functionality and already fixed so here is what differes: we want a new jsp window to open like a popup, with the data retreived from the server round trip and at the same time the first page with the table shall still be there so that you just can close the popup and click the next cell which creates a new server round trip and a new jsp popup and so on.
    My solution which doesn't work yet: In application "a" I have a JavaScript for the clicked cell which opens another iview application "b" in a new window, by window.open("navurl_to_the_iview"), and that works fine.
    At the same time the value of the clicked cell is written to the data bean and the bean is put in the http session (since component session does not reach between applications).
    The second iview "b" retreives the bean from the http session and fills the jsp page with data.
    Here is now the problem: no data is displayed and this because the iview "b" retreives the bean BEFORE iview "a" has been able to put the bean/value into the http session. How do I know this for sure? Simple, if I do a refresh of iview "b" the value is displayed.
    I could do a JavaScript that recursively checks if the value in the bean is null or not but then I have to do a method that retreives the bean from the http session each time.
    This could work but I wonder if this is the most simple solution. So my question for you gents and madams is: do you know of a more simple solution?
    Best regards
    Benny Lange
    Edited by: Benny Lange on Oct 6, 2009 11:33 AM

    Hi you all.
    In this case the solution was to pass the id in the url to the second iview and let that iview use the id to retreive data from the backend system.
    But I still think the question is interesting, if it's possible to open a second jsp window after a server round trip and still have the first one open.
    All the best
    Benny

  • Is anyone else having problems with the new software update for macbook? I get random clicking and flicker an movement of the pointer!

    Is anyone else having problems with the new software update for macbook? I get random clicking and flicker an movement of the pointer!

    OS X 10.7 Lion, 10.8 Mountain Lion & 10.9 Mavericks
    Reset Password starting from Recovery HD
    Start the computer,then press and hold down command and R keys to start into recovery partition.
    When you see the Apple logo, release the keys.
    Wait until  OS X Utilities window shows up.
    Move the mouse to the menubar at the top and click "Utilities", then select "Terminal"
    from the drop down.
    Terminal window will appear.
    Type in   resetpassword   and press enter on the keyboard.
    Leave the Terminal window open.
    Reset Password Utility window will open with Macintosh HD selected.
    Select the user account from the popup menu box.
    Enter a new password.
    Reenter the new password for the user.
    Enter a hint.
    Click the "Save" button.
    Click  in the menubar and select Restart.
    Log in.
    If Keychain dialog box appears, select “Create New Keychain”.

  • Problems with Itunes New Version?

    Problems with Itunes New Version?
    Here is a copy of the error message. Every Time I listen to a song and it end and I go to listen to a new song the Itunes Freeze up. This is on the New Version of Itunes. I have a Windows 7 32bit 3GB Ram 1TB harddrrive Space
    <edited by host>
    Thanks,
    <edited by host>
    Fault bucket 1279649891, type 5
    Event Name: AppHangB1
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: iTunes.exe
    P2: 9.2.1.5
    P3: 4c47745b
    P4: e36b
    P5: 2048
    P6:
    P7:
    P8:
    P9:
    P10:
    Analysis symbol:
    Rechecking for solution: 1
    Report Id: 46dfdb3e-99a7-11df-8064-00038a000015
    Report Status: 0
    Fault bucket 1279649891, type 5
    Event Name: AppHangB1
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: iTunes.exe
    P2: 9.2.1.5
    P3: 4c47745b
    P4: e36b
    P5: 2048
    P6:
    P7:
    P8:
    P9:
    P10:
    Analysis symbol:
    Rechecking for solution: 0
    Report Id: 46dfdb3e-99a7-11df-8064-00038a000015
    Report Status: 0

    There certainly is a problem with itunes. I downloaded 9.2 and now it won't open. It won't recognize my iphone, either. I uninstalled it in the order recommended by the site, no joy. Deleted a configuration file, no joy. System Restore, no joy. All other software and hardware on the machine is working fine. I call AppleCare AND a local store, either they are completely clueless (which I doubt), or they have no idea how to fix it. I can't even back up my phone, or use the ipod. And since no one at Apple seems to care enough, I'll have to wait until the clamor is loud enough for them to even admit to a problem before I can use the ipod again.

  • Is there a problem with JFrame and window listeners?

    As the subject implies, i'm having a problem with my JFrame window and the window listeners. I believe i have implemented it properly (i copied it from another class that works). Anyway, none of the events are caught and i'm not sure why. Here's the code
    package gcas.gui.plan;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowListener;
    import java.util.Hashtable;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import gcas.plandata.TaskData;
    import gcas.util.GCASProperties;
    import gcas.gui.planlist.MainPanel;
    * MainFrame extends JPanel and is the main class for the plan details window
    public class MainFrame extends JFrame implements WindowListener
         * the container for this window
        private Container contentPane;
         * a string value containing the name of the plan being viewed
        private String labelText;
         * a string value containing the name of the window (GCAS - plan list)
        private static String title;
         * an instance of JDialog class
        private static MainFrame dialog;
         * hashTable that correlates the task name to its id as found in the
         * plan
        private Hashtable taskNameToId = new Hashtable();
         * an instance of taskSetPane.  This is the current instance of taskSetPane
         * being viewed
        private PlanTaskSet currentPane;
         * instance of TaskData class.  Each instance will hold information on
         * an individual task
        private TaskData taskData;
         * hashTable containing instances of the taskSetPane class
        private Hashtable taskSetPanes = new Hashtable();
         * an instance of the OuterPanel class
        OuterPanel mainPanel;
         * an instance of the ButtonPanel class
        ButtonPanel buttonsPanel;
         * an instance of the LeftPanel class
        LeftPanel leftPanel;
         * an instance of the the GCASProperties class
        GCASProperties gcasProps;
        private static MainFrame thisPlanMain = null;
        private MainPanel planListMain;
         * constructor for MainFrame
         * @param frame the parent frame calling this class
         * @param locationComp the location of the component that initiated the opening of the dialog
         * @param labelText the name of the plan that is being viewed
         * @param title title of window
        private MainFrame(JFrame frame, Component locationComp, String labelText,
                String title)
            super(title);
            gcasProps = GCASProperties.getInstance();
            mainPanel = new OuterPanel(labelText, currentPane,
                    taskNameToId, taskSetPanes);
            leftPanel = mainPanel.getLeftPanel();
            System.out.println("LABLE: " + labelText);
            leftPanel.setMainPanelContents();
            buttonsPanel = new ButtonPanel(labelText, taskSetPanes,
                    taskNameToId, leftPanel);
            contentPane = getContentPane();
            contentPane.add(mainPanel, BorderLayout.CENTER);
            contentPane.add(buttonsPanel, BorderLayout.PAGE_END);
            this.addWindowListener(this);
            this.labelText = labelText;
            pack();
            setLocationRelativeTo(locationComp);
            this.setVisible(true);
            planListMain = MainPanel.getInstance();
            planListMain.setVisible(false);
        public static MainFrame getInstance(JFrame frame, Component locationComp, String labelText,
                String title)
            if (thisPlanMain == null)
                thisPlanMain = new MainFrame(frame, locationComp, labelText,
                        title);
            return thisPlanMain;
        public static MainFrame getDialogObject()
        {   //from the location this is called (ButtonPanel), this will never
            //be null
            return thisPlanMain;
        public static void setABMDDialogNull()
            thisPlanMain = null;
         * returns an instance of MainFrame
         * @return MainFrame instance
        public static MainFrame getDialog()
            return dialog;
         * setter for MainFrame
         * @param aDialog a MainFrame instance
        public static void setDialog(MainFrame aDialog)
            dialog = aDialog;
         * window opened event
         * @param windowEvent the window event passed to this method
        public void windowOpened(WindowEvent windowEvent)
         * The window event when a window is closing
         * @param windowEvent the window event passed to this method
        public void windowClosing(WindowEvent windowEvent)
            gcasProps.storeProperties("PlanList");
            MainPanel abmd = MainPanel.getInstance();
    //        planMain = this.getDialogObject();
    //        if(planMain != null)
    //            planMain.setVisible(false);
    //            abmd.setVisible(true);
    //            planMain.setABMDDialogNull();
            if(this.getDialogObject()!= null)
                abmd.setVisible(true);
                setVisible(false);
                setABMDDialogNull(); 
         * Invoked when the Window is set to be the active Window
         * @param windowEvent the window event passed to this method
        public void windowActivated(WindowEvent windowEvent)
         * Invoked when a window has been closed as the result of calling dispose on the window
         * @param windowEvent the window event passed to this method
        public void windowClosed(WindowEvent windowEvent)
         * Invoked when a Window is no longer the active Window
         * @param windowEvent the window event passed to this method
        public void windowDeactivated(WindowEvent windowEvent)
            System.out.println("HI");
         * Invoked when a window is changed from a minimized to a normal state
         * @param windowEvent the window event passed to this method
        public  void windowDeiconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
           System.out.println("Invoked when a window is changed from a minimized to a normal state.");
         * Invoked when a window is changed from a normal to a minimized state
         * @param windowEvent the window event passed to this method
        public  void windowIconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
    //        System.out.println("Invoked when a window is changed from a normal to a minimized state.");
    }anyone know whats wrong?

    It turned out that my ide was running the old jar and not updating it, so no matter what code i added, it wasn't being seen. Everything should be fine now.

  • Whenever I open a new window of firefox a new tab opens with the new window. How do I get it to stop doing that?

    Whenever I open a new window of Firefox, the new window opens at the hope page (like I want it to), but then a tab opens up with the new window. I want Firefox to stop doing this. When I open a new window I just want the window to open. I don't know how to fix this as I have know idea how I made this happen. This first happened when I hit control + N to open a new window, but I didn't hit the "N" cleanly. I pressed one of the other keys around the "N" and this issue started.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Incompatability with the new Windows 8.1

    Yesterday i downloaded the new Windows 8.1 for my laptop and was rewarded with a list of programmes that may have problems working after the download. Hell! Included in the list was compatability issues with BlackBerry Device Manager 7.0 and was told that an update to 7.1.0 was available so i tried to download the update and was rewarded with error messages galore in that this software doesn't work with the new Windows 8.1 and to contact the vendor that i bought the software from. Grrrrrrr! Anybody any ideas please? Help!

    I don't know when for 8.1
    System Requirements BlackBerry Desktop Software v7.1
    Software requirements
    Windows® XP SP3 or later, Windows Vista®, Windows 7 or Windows 8
    If you’re using a 64-bit Windows XP computer, you must install a hotfix from Microsoft®. Learn about and download the Microsoft hotfix.
    Microsoft® .NET Framework 3.5 SP1 or an active Internet connection
    iTunes version 7.7.1 or later, or Windows Media® Player version 10 or later, for music synchronization
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • [SOLVED][GRUB]Install problem with the new method

    Hi,
    it is not my first install of Arch Linux but I have a problem with this new kind of installation method, especially with GRUB.
    Here is my hard drives configuration :
    /dev/sda1 -> SSD 120 GB ntfs (windows)
    /dev/sdb1 -> HD 1 TB ext4 (data)
    /dev/sdc :
    /dev/sdc1 -> ext2 /boot
    /dev/sdc2 -> swap
    /dev/sdc3 -> ext4 /
    /dev/sdc5 -> ext4 /home
    During the installation, I installed grub (with grub-install) in /dev/sdc. I assumed it was the correct drive to install it but apparently not, Windows starts automatically and I don't have the grub menu.
    Should I install my system again or is there a way to boot on the livecd and install it ?
    Should I :
    1) mount /dev/sdc3 in /mnt then /dev/sdc1 in /mnt/boot and finally /dev/sdc5 in /mnt/home
    2) pacstrap /mnt grub-bios
    3) arch-chroot
    4) grub-install
    Thank you.
    Last edited by hiveNzin0 (2012-09-12 06:15:15)

    DSpider wrote:
    If you set whatever drive "/dev/sdc" is (brand and model) to boot first in the BIOS, all you need to do is install a bootloader on Arch. You don't even need a separate boot partition. It will use the /boot folder on root partition. Then install os-prober (if you don't already have this installed) and re-generate the .cfg.
    https://wiki.archlinux.org/index.php/Be … bootloader
    The problem is that I cannot select another hard drive. The only one available for the boot order is the Samsung 830 series (/dev/sda with Windows).
    The other options are the CD drive and removable disk.
    I checked that this morning, maybe I was too tired. I will check again this evening.
    But if I am right and I cannot select my intel SSD (containing my arch setup) for the boot order, would the solution I described work ? I don't see why not but my knowledge are basic in Linux.
    Thank you again for your help.

  • I have a problem with my new battey!!

    Hi,
    I have burshaced a new battery just two days a go.
    My new battery is:
    hp 12-cell multi-charge extended battery (ks527aa)
    In its specifications I have found that it works up to 8 houers, it worked with me just for 3 houers befoe it needed to recharge!!
    My labtop is Hp dv6 2170ee.
    Is there any problems with my new battery?!!
    please help me.
    Thank you so much in advance,
    Best regards,
    Aya.
    This question was solved.
    View Solution.

    Notice the "up to"....you can get 8 hours if the laptop is asleep and you don't use it but if you actually use it and espescially if you use wireless and have the screen on full bright, 3 hours is very good for a full-sized powerful laptop. Run it down to 20% and recharge it a few times to let Windows calibrate the battery and the run time will stretch a bit, but 5 hours is a home run and 3.5 hours is acceptable on that class of laptop. Here are a few tricks you can use to stretch the battery as far as possible:
    http://www8.hp.com/h20621/video-gallery/us/en/customer-care/1640737838001/tips-for-extending-hp-note...

Maybe you are looking for

  • How to c heck if exicse invoice is executed for performa invoice ,

    how to c heck if exicse invoice is executed for performa invoice , cos u cannot see the excise invoice in doc flow where exactly can i see the excise num against the proforma,,, pls help

  • 1GB file was too large and did not upload

    Please indicate when the Cloud will allow for larger uploads, as promised in previous posts by Adobe staff. I have many files larger than 1GB and many files larger than 5GB. (Please correct me if I am wrong. This worked for months when first launched

  • Failed to parse SQL query: ORA-01403: no data found

    I'm going to post and answer my own question in the hope that others will not have to struggle with this error. Using a report of the type PL/SQL Function Body Returning SQL and using generic columns you may run into this error failed to parse SQL qu

  • How to view TDMS control table?

    After the  domain level assignment is done for a rule,  I want to verify the table assignment details in  the TDMS control tables. Could you tell me which transaction to do above verification? Thanks!

  • Moving Clips - Frustration

    Coming from FCP I'm used to being able to pick a clip up on the timeline and move it (e.g. to early on the sequence) complete with audio.  As I pull the video clip up a track (in FCP) the Audio goes down a track (or two tracks for stereo pair) and I