In EP7 Ess, how to remove "open new window" for ESS areapage

Hi all:
   In ESS areapage, there is some tabs for click. When I click it, it open a new window. But I want the content display inside the same content page. These are all standard areapage and worksets.
   How can I reset the "open new window" ?
   My EP version is EP 7 sp9

You can set the workprotect mode on a global level so its used for every user.
Systemadministration -> Systemconfiguration -> Service Configuration -> Applications -> com.sap.portal.epcf.loader -> Services -> epcfloader. Set the "workprotect.mode.default". After you have saved the entry. ricght click on com.sap.portal.epcf.loader in the tree menu and choose "administrate". Click on "restart".
Markus

Similar Messages

  • I can't open new windows for my firefox

    Hi,
    I am not able to open new windows in Firefox (Version 31.0) on my Windows 8 PC. When I click the open new window, it doesn't makes any effects.
    This started from yesterday evening, can you please let me know how can I get this resolved?
    Regards,
    Anand.

    Hello Anand, '''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''.
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".[[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.
    thank you

  • How can I open new window from a link in another window?

    Hello everyone!
    Can anyone help me with my problem. I need to open a child window from a link in the mother/master window. Actually, the link that would open the child window is directed to a servlet that retrieves data from the database. The data will then be displayed in the child window. I don't how to open a new window with the data retrieve (thru the servlet) displayed in it. I'm using model 2 architecture (Servlet-JSP).
    Thank you in advance and more power!
    nicoleangelisdaddy
    [email protected]

    Or you can use something like this,
    Click and in your test()
    <script language="javascript">function test()
          document.form_name.target="_blank";
          document.form_name.action="/test/servlet/LoginServlet";
          document.form_name.method="post"
          document.form_name.submit();
    }</script>
    Here "/test" is your application context path.
    If you want to open the link in the named window then use,
    document.form_name.target="your_own_name";

  • Opening new window for reports.

    As of now the reports open in the samewindow as the parent while being displayed,Can someone say what to do to open the report in a new window other then the window from which it was called.I have used javascript:
    new window.open() but was not successful.
    null

    When adding a component to a folder using "add item" in the folder edit mode, on the second page of the add item wizard, there is a selection list that will control how the component is displayed. Select the radio button corresponding to, Link That Displays Item In New Browser Window.
    That should do it.
    Good luck.
    Michael.

  • Firefox will not open new window for websites that require it

    I am running Firefox 3.6.16 on Windows XP.
    For some time now, certain websites will just not work - for instance, when I use Mapquest, it used to open the new window when I clicked on "print" - that no longer happens.
    Today, I was trying to use the eScrip online mall, and when I clicked on the store name, it did not open a new window - this was working fine back in December when I was doing my online shopping.
    My suspicion is the new version has some kind of problem. does anyone have a solution for this?
    Thanks!

    I use MapQuest a lot but haven't used the PRINT option for a while. I just tried it and you are right, the PRINT does not open any window or even work. But if you change it to the NEW MapQuest, the PRINT function will work. I guess MapQuest has disabled the PRINT option in their CLASSIC version. Maybe they are trying to encourage users to use their NEW version instead.
    If you still want to use the CLASSIC version, you can always copy the map and paste it onto a Image Editor program and print from there.

  • How to automatically open browser window for getting user id & password

    i have created a jsp page, that page cannot be open by anyone anyway, it should be only visible to me only.
    how do i achieve this.
    my requirement is that whenever any one request for that jsp page, browser should automatically open one window and ask for user id & password, if it is right then the page should be displayed else error should be shown.

    Adding the following to web.xml will define security constraints for all resources under the /admin directory, also only a user in the manager role will have access to these resources.
    For tomcat you can look at the conf/tomcat-users.xml file for setting up users and roles
         <security-constraint>
              <web-resource-collection>
                   <web-resource-name>Secure Pages</web-resource-name>
                   <description></description>
                   <url-pattern>/admin/*</url-pattern>
                   <http-method>GET</http-method>
                   <http-method>POST</http-method>
              </web-resource-collection>
              <auth-constraint>
                   <description></description>
                   <role-name>manager</role-name>
              </auth-constraint>
         </security-constraint>
         <security-role>
              <description></description>
              <role-name>manager</role-name>
         </security-role>

  • Opening New Window for the file

    Hi Everyone,
    I have a requirement, where in the client has policy file, which is made to display when clicked on a link.
    But the problem is, the pdf policy file opens in the same window. If the user closes the pdf policy file window, the connection to the application will be lost and the data that is entered in the previous page is also lost.
    For the above reason, the client wants the file to open in a new window instead of in the same window. So that the connection to the application is not lost, even if the Policy file window is closed.
    Can anyone help me in accomplishing the above with list possible customization.
    Thanks in Advance.
    Regards,
    Pavan

    Hi!
    I have the same problem. I'm using a commandButton on af:table row that opens the file, stored in a column of that row.
    <af:column>
    <af:commandButton text="Show attachment"
    actionListener="#{backing_FileUpload.downloadFile}"/>
    </af:column>
    The code I'm using is:
        response.setHeader("Content-Disposition",
                           "attachement; filename=\"" + lsFilename + "\"");
        response.setContentLength((int) length.intValue());
        response.setContentType("application/x-download");
        try {
            InputStream in = loBlob.getBinaryStream();
            OutputStream out = response.getOutputStream();
            byte[] buf = new byte[1024];
            int count;
            while ((count = in.read(buf)) >= 0) {
                out.write(buf, 0, count);
            in.close();
            out.flush();
            out.close();
            loFC.responseComplete();
        } catch (IOException ex) {
            System.out.println(ex.getMessage());
            ex.printStackTrace();
        }This gets the file opened in the same window on the same jspx page. Ehat I would like to do is to open this file in a pop-up or a new browser window so the user can simply get back to the page from where he opened the file.
    I'm thinking about creating another empty jspx page just for showing files and send the file to this page but I would like to know if there is a better and more simple way to do that.
    Thank you!
    BB

  • Swiftkit opens new window for runescape

    I want to play runescape on my mac, so i downloaded the application swift kit. But whenever I click "play now" on the homepage in swiftkit, it asks me if i will allow it to run, and then it opens the game in a new window. very aggrevating.. any ideas?

    I don't think there is anything you can do... You could use Mission Control or Expose to quickly switch but I wouldn't use SwiftKit while training because you might get killed

  • Runtime.exec() - how to open new window for new program?

    Hi,
    I have searched through the forums but haven't found an answer to this one yet. I am using runtime.exec() to start up a new java program. At first I thought it wasn't running properly but, after checking task manager, I have discovered that the new program I open runs, it is just completely invisible to me. I am wondering how I can get the new program to run in a command window or something where I can monitor it.
    Thank you for your help,
    Drew

    Thank you all. After trying to figure out why the start command wouldn't work in the runtime.exec() call(not an executable - I am a dolt), I tried putting it in a batch file and it worked perfectly. Thanks for your help,
    Drew

  • Firefox won't open new tab, have to open new window for any link.

    New tab won't open both when attempting to do it by clicking on "cross" in the tabbar or from File >> new tab.
    Thanks

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/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

  • Finder always opens new windows

    Finder always opens new windows for me. It didn't used to do this (its been doing it at least since I was using 10.5.6), and "Preferences > Always open folders in a new window" is not checked. Any ideas?

    JRokeach,
    Sorry if this sounds to simple, I'm hoping that it is, but in a finder window do you have the toolbar showing? Because if you don't it will open all the folders in there own windows. To fix there is a little button in the top right that hides the toolbar, also if you goto view hide toolbar it will do the same.
    If that isn't the case try removing the com.apple.finder.plist found in Macintosh HD -> Users -> YOUR USER -> Library -> Preferences, and trashing it.
    Hope that helps,
    Weston

  • Opening new window on button click from pdf without loosing session

    Hi,
    In my Java web applicaion on click of a link, we are opening a new window in which we are displaying a pdf. There are 5 buttons on this pdf.
    On clicking of this button again we are opening a application link in new window. But in this window we are not gettting our session, which is there in first two window.
    For opening new window from pdf button click we are using
    var dynamicUrl3 = myappurl;
    app.launchURL(dynamicUrl, true); 
    How can i open new window with the same sesion from the pdf button.
    Please help for the same.
    Thanks,
    Abhijit Mohite.

    Yes, with target="_blank" in a link or a form.Thanks for ur valuable suggestion. I changed the button to link.
    Its working fine now without JavaScript.
    Now i got another requirement. When user select some items and press a button in the new popup window, the window must close on button click and the parent window must refresh. This must also be done without using JavaScript.
    Is this possible? Please give me an idea to do this.
    Thanks.

  • Button on page opens new window, session times out in old window

    Hi,
    I've created a custom page and added a button through personalizations in Oracle that opens the new custom page in a new window. When this happens, though, the original window throws the following error when a user attempts to use any functionality in that page:
    Error: Cannot Display Page
    You cannot complete this task because you accessed this page using the browser's navigation buttons (the browser Back button, for example).
    More specifically, the new button has been added to a LOV page in Oracle. Navigation would be: Create timecards page, click on Task LOV button (this opens new window for Task LOV), new button is on this Task LOV page. The new button then opens the custom page, and when the user returns to the Task LOV page to select a task they receive the error.
    How do I prevent this error when the new custom page opens from the button?
    Thanks in advance for your help,
    Suzanne

    I have an update to this issue:
    I found that adding the value &retainAM=Y to the button URL for my custom page resolves the issue of the time-out in the Task LOV page. However, when I make the task selection in the LOV page and return to the main create timecard page, I find that the session has timed out on that page.
    Any suggestions?
    Thanks,
    Suzanne

  • How do I forces FF 23 to open maximized, not full screen, but maximized, both on start up and when opening new windows?

    Firefox 23 does not open maximized nor does it open new windows maximized. As such I have to manually maximize each window.
    Run is set to maximized in the shortcut properties, yet it still opens in a normal or less than normal size window.
    Older versions open maximized with no problem. I have Profile manager configured so that I can run multiple versions at the same time and everything opens maximized except FF 23.
    is there some setting in the about:config interface or is this a genuine BUG in the latest version? Any help would be appreciated greatly.
    Also can you tell me how to modify the title bar text/icon/etc as well as where to find the icon or portable network graphic (png) file for the main-window.ico or direct me to appropriate knowledge base articles for modifying both.

    My localstore.rdf file was fine. The problem was caused by two plug-ins that Mozilla shows as being compatible with Firefox 23, when in fact they both cause undesired side effects.
    Maybe the employees of Mozilla should actually test plug-ins before they allow them to be available for download or worse yet, recommend them.
    And if any of the in-house developers had a clue they would stop removing old lines of code from Mozilla products so that new versions of Firefox would still be compatible with older plug-ins and extensions people would still like to use.
    I had to remove recommended extensions and copy code from older versions of FF and NS and modify settings in about:config to allow older extensions to work to correct the problems and get Firefox to work the way I need it to. All in all I have over forty hours invested in modding FF at this point just to have it function the way it used to.
    Unfortunately, since I still can't get buttons designed to open .URL links from the toolbar to work as they did in the past I have a feeling I'll be returning to older code sources to find more answers.
    Lucky for me that I have every browser going back to NCSA Mosaic available to me, so every bit of code from the present till back before Mozilla existed is include in my knowledge base. It's a shame Mozilla doesn't keep such a reference available for it's users or apparently it's in house developers and staff.
    Maybe I'll even re-enable the splash screen for Firefox since the only available plug-in for that doesn't appear to work with Version 23 either, even though once again the compatibility adviser says it does
    It's truly sad that the result of Marc Andreessen's and James Clark's work and Netscape in general became the spawning Mozilla. What used to be a great browser and an acceptable replacement for Netscape, has become a joke. So much for all the hard work and effort made by Dave Hyatt and Blake Ross as well.
    I guess that's what one should expect from the developers that are a part of generations X, Y, and Me. The attitudes associated with those generations show in the lack of thought, consideration, and ingenuity that have been a part the last several versions of FF, not to mention, the copying of features from Chrome.
    When the only original idea to come out of Mozilla of late is to remove or disable features people have used and counted on for decades, the I don't care, I don't know, and me, me, me attitudes of so many from the aforementioned generations is truly evident in the last twenty incarnations of Firefox. Not to mention the attitudes and unhelpful nature of the responses users encounter when asking for help.

  • My computer suddenly stopped allowing me to open new windows in firefox, how do I reset it to do this

    last week my computer (a thinkpad) stopped letting me open new windows by pushing the + key in a window, so now when I search it replaces the open window. what happened and how do I fix it?

    The suggestion by TonyE will remove the toolbar from Firefox.
    To remove the Ask Toolbar completely from your entire system, see:
    *http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4
    <br />
    <br />
    '''Other issues needing your attention'''
    The information submitted with your question indicates that you have out of date plugins with known security and stability issues that should be updated. To see the plugins submitted with your question, click "More system details..." to the right of your original question post. You can also see your plugins from the Firefox menu, Tools > Add-ons > Plugins.<br />
    <br />
    *Adobe PDF Plug-In For Firefox and Netscape
    **Current versions are 9.4.2 and 10.0.1 (Reader X)
    **More info about version 10.0.1 (Reader X)
    ***New Adobe Reader X (version 10) with Protected Mode was released 2010-11-19
    ***See: http://www.securityweek.com/adobe-releases-acrobat-reader-x-protected-mode
    *Shockwave Flash 10.0 r32
    **Very old version
    #'''''Check your plugin versions''''' on either of the following links':
    #*http://www.mozilla.com/en-US/plugincheck/
    #*https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**Use the links below to avoid getting the troublesome "getplus" Adobe Download Manager and other "extras" you may not want
    #**Use Firefox to download and SAVE the installer to your hard drive from the appropriate link below
    #**Click "Save to File"; save to your Desktop (so you can find it)
    #**After download completes, close Firefox
    #**Click the installer you just downloaded and allow the install to continue
    #***Note: Vista and Win7 users may need to right-click the installer and choose "Run as Administrator"
    #**'''<u>Download link</u>''': ftp://ftp.adobe.com/pub/adobe/reader/
    #***Choose your OS
    #***Choose the latest #.x version (example 9.x, for version 9)
    #***Choose the highest number version listed
    #****NOTE: 10.x is the new Adobe Reader X (Windows and Mac only as of this posting)
    #***Choose your language
    #***Download the file, SAVE it to your hard drive, when complete, close Firefox, click on the installer you just downloaded and let it install.
    #***Windows: choose the .exe file; Mac: choose the .dmg file
    #*Using either of the links below will force you to install the "getPlus" Adobe Download Manager. Also be sure to uncheck the McAfee Scanner if you do not want the link forcibly installed on your desktop
    #**''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #**Also see: https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox (do not use the link on this page for downloading; you may get the troublesome "getplus" Adobe Download Manager (Adobe DLM) and other "extras")
    #*After the installation, start Firefox and check your version again.
    #'''Update the [[Managing the Flash plugin|Flash]] plugin''' to the latest version.
    #*Download and SAVE to your Desktop so you can find the installer later
    #*If you do not have the current version, click on the "Player Download Center" link on the "'''Download and information'''" or "'''Download Manual installers'''" below
    #*After download is complete, exit Firefox
    #*Click on the installer you just downloaded and install
    #**Windows 7 and Vista: may need to right-click the installer and choose "Run as Administrator"
    #*Start Firefox and check your version again or test the installation by going back to the download link below
    #*'''Download and information''': http://www.adobe.com/software/flash/about/
    #**Use Firefox to go to the above site to update the Firefox plugin (will also install plugin for most other browsers; except IE)
    #**Use IE to go to the above site to update the IE ActiveX
    #*'''Download Manual installers'''.
    #**http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller
    #**Note separate links for:
    #***Plugin for Firefox and most other browsers
    #***ActiveX for IE

Maybe you are looking for