Closing the Application Browser.

Hi Experts,
I had been Posting on the forum about closing of the Application Window.
Thanks a lot for the ideas,the purpose is yet to be solved.
Let me explain my requirement in detail.
I have an application in which there are View Layouts.
I am able to close the Application Window on Click of a Button(say CLOSE).
But the requirement is such that,the Application Browser window needs to be closed.
Is it Possible in Web-DynPro to Close the Browser window on Click of a Button.
Please provide the necessary information in this regard.
Thanks and regards,
Chandrashekar.

chk it
closing browser window via button
How to close parent window

Similar Messages

  • Why FF usaes 25% of CPU, even after closing the application..?

    After opening two or more browser, automatically FF stars using 24/25% of CPU.
    Even one tab having Youtube running.
    As well as using huge amount of memory, and this gradually increases.
    Closing the application doesn't solves the problem.
    After that the application doesn't opens. A window appears and shows.. Firefox already running and is not responding.
    Going to Task manager and kill the process solves the problem.
    And it's happening every time.
    In cyclic order need to follow the annoying process.
    .....Tried the processes but NO result found.....
    Re-installation of FF didn't worked.
    Re-installed Flash player.
    No malware found by Malwarebytes.
    Even tried running FF in safe mode. (disabling all plugin and extensions)
    And the result is.... NO progress. CPU 25% usage and had to kill the task.
    Please some one help.
    (OS: windows 7 professional)

    Your computer isn't getting slower, it's other things demanding faster.  If you are installing all the possible updates to software those will be designed for newer computers.  Once you start browsing you're browsing a web designed by people who because they spend all their time designing pages they themselves have powerful machines with fast connections because it is their job.  It's like if all city streets were designed by racecar drivers.  A 2008 computer is already considered vintage by Apple and close to no longer being supported in any manner.  Vintage and obsolete products - http://support.apple.com/kb/HT1752  I have an even older computer than you and it is annoying but that's the way things are.
    Frankly 4-6 icon bounces doesn't sound long to me.  Don't forget that for applications such as iTunes how long it takes to open will also depend upon the size of the library.
    I don't think CPUs wear down.  Conceivably some slow-down could be the result of excessive bad sectors on a hard drive but you say you replaced that (and I would expect it to have shown more serious symptoms were that happening).
    You can use Activity monitor to check your RAM usage.  Newer applications and newer OS versions will require much more RAM than posted "minimum"  If a computer doesn't have enough RAM it starts using the hard drive which is slower than chips.

  • Many times it happens that even I had closed the application window i had to manually  quit the application by going in 'forced quit'..any solution .. :(

     many times it happnes that even I had closed the application window  it keep running  on backend and I have to manualy close it again by going in  'forced quit'.. any solution.... 

    Closing the window doesn't quit the application on Mac like it does in Windows. You have to select Quit (Program Name) from the top menu or use the keyboard shortcut Command + Q

  • The PSE 10 process doesn't stop after closing the application. Why??

    On Windows 7, the PSE 10 process doesn't stop when closing the  application, therefore the PSE 10 app. will not restart once it is closed. The user must stop the process from task manager or reboot before PSE 10 can be restarted on a Windows 7 machine. The forum suggestion to double-click the exe (instead of the shortcut) as a solution, obviously isn't a solution and can't work. There are no updates to PSE 10 and the only access to any support is through this forum. There have been complaints about this on blogs all over the Internet. Why can't Adobe come up with a fix/update or if they have where is it posted?

    First of all, there is no difference between the files on the disk and those downloaded as the trial. The only difference is that one comes with a serial number and the other does not. You can put your serial number into the trial version and it will then be activated. The only way the disk would behave differently is if there is some physical flaw (scratches, warping, etc). Usually such damage will cause the installation to fail, it's pretty difficult for such damage to modify the files in such a way that they still install but behave differently.
    If you are dropping a file on the shortcut and the Photoshop Elements Editor is opening but the file is not, there could be a few different things going on there. Check your shortcut properties first: does it go to PhotoshopElementsEditor.exe or Photoshop Elements 10.0.exe? If the former, then there are probably some missing support files. If the latter, this is the Welcome Screen, which has likely been configured to launch the Editor automatically. However, you would be sending the file to the Welcome Screen, which doesn't do anything with the file. It is not capable of passing the file off to the Editor, only capable of launching it.
    Also, double-clicking a shortcut is generally the exact same thing as double-clicking the file the shortcut points to, but you can add modifiers to shortcuts to make them behave differently.

  • Prompt user to save change before abnormally closing the application

    Hi,
    I've some trouble prompting user to save change before abnormally closing the application (logging off, shutdownding machine...). I tried to use Runtime.getRuntime().addShutdownHook() and it doesn't seem to work. Here's part of my code. Help please!!!
    program print out "1" and stays in a "dead-lock" mode...
    private void shutdown() {
    boolean saveConfig = true;
    if (saveConfig) {
    System.out.println("1 ");
    int answer = JOptionPane.showConfirmDialog(null,
    "Configuration has been changed. Do you want to save
    configuration before exit?",
    "Save Config"
    JOptionPane.
    YES_NO_CANCEL_OPTION);
    JOptionPane.showMessageDialog(this, "Can't connect to unit. Error in Heal unit!", "Error", JOptionPane.INFORMATION_MESSAGE);
    System.out.println("2 ");
    if (answer == 0) {
    savefileButton_actionPerformed();
    jMenuFileExit_actionPerformed();
    else if (answer == 1) {
    jMenuFileExit_actionPerformed();
    else {
    return;
    else {
    int answer = JOptionPane.showConfirmDialog(itself,
    "Are you sure you want to exit? ",
    "Exit",
    JOptionPane.YES_NO_OPTION);
    if (answer == 0) {
    jMenuFileExit_actionPerformed();
    else {
    return;
    private class MyShutdownHook extends Thread {
    public void run() {
    shutdown();
    // add shutdown hook
    MyShutdownHook shutdownHook = new MyShutdownHook();
    Runtime.getRuntime().addShutdownHook(shutdownHook);

    doesn't much matter. shutdown hooks are not guaranteed to run or be able to finish.

  • HT4414 I get a message "In order to continue installation, please close the following application.  I closed the application, but the message does not close and the installation is "frozen" ... how do I reset?

    I get a message "In order to continue installation, please close the following application.  I closed the application, but the message does not close and the installation is "frozen" ... how do I reset?

    Try posting in the Mountain Lion forum. Here is the link below. This forum is for old software circa 2003.
    https://discussions.apple.com/community/mac_os/os_x_mountain_lion

  • Closing the IE browser thro' Java application

    Hi,
    I have a requirement wherein I have to close the applications launched like (Internet exploer window) thro my java application.
    Can anyone help me on this?
    I tried using Runtime class Process.destroy( ) method. But still not able to find the exact one.
    Thanks.

    maybe this is because the code did not create the process directly, ao destory() method doesn't work as expected.
    Process ps = Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + "my website open here")
    maybe ps not reference to the process create by rundll32
    then there is no way to close a browser directly from java application?

  • Closing the report browser?

    Hi All,
    I am using developer suit 10g, I am generating a pdf file on the application server but after the file generated the browser open and give me a message "Oracle Reports Job Status Successfully run ".
    I need to hide the browser because I am generating using loop so it opens the browser alot of times.
    Thanks,

    How do you invoke the report? Using forms?

  • Generated JNLP and closing the original browser window

    Hi All, This is my first post so bear with me. Here is my problem.
    I am using Web Start for an application.
    I need to check to see if web start is installed or not.
    If it is NOT I need to auto-install
    if it is I need to call a servlet that dynamically generates the jnlp with the user that I passed in as <arguments/> maybe other arguments in the future also
    I need to shut the original browser window
    I will use this servlet in multiple web apps
    I have it working like this but I don't think it is clean enough
    I call a servlet with the syntax checkJREServlet?USER=username
    this servlet writes out:
    <html>
    <body>
    <h1>Installing Java Runtime</h1>
    <OBJECT
    CLASSID="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    width="0" height="0"
    codebase="http://<myservler>/<plugins folder>/j2re-1_4_2-windows-i586.exe#Version=1,4,2,0">
    <PARAM NAME="code" VALUE="redirectAndClose.class"> //my applet class
    <PARAM NAME="archive" VALUE="RedirectUtil.jar"> //the jar where my applet class is stored
    <PARAM NAME="archive_cache" VALUE="RedirectUtil.jar">
    <PARAM NAME="type" VALUE="application/x-java-applet">
    <PARAM NAME="where_to_next" VALUE="http://<myservler>/<mywebapp>/openAppServlet?USER=username">
    You did not install Java.
    <p>Please use the <b>Back</b> button to return to the previous page.
    </OBJECT>
    </body>
    </html>
    I have redirectAndClose which is:
    import java.applet.Applet;
    import java.net.URL;
    import java.net.MalformedURLException;
    import netscape.javascript.*;
    public class redirectAndClose
    extends Applet
    java.util.Timer timer = null;
    int seconds = 5;
    public void start()
    try
    getAppletContext().showDocument(
    new URL(getCodeBase(), getParameter("where_to_next")), "_blank");
    //now we have to close ourselves in 5 seconds
    timer = new java.util.Timer();
    timer.schedule(new java.util.TimerTask()
    public void run()
    timer.cancel(); //Terminate the timer thread
    destroy();
    , seconds * 1000);
    catch(MalformedURLException e)
    throw new RuntimeException(e);
    public void destroy()
    super.destroy();
    //close this window because we don't need it
    JSObject win = (JSObject)JSObject.getWindow(this);
    win.eval("window.opener=self;self.close();");
    If try to close without a timer my entier session gets killed, including my webstart app that the openAppServlet wrote out the jnlp for
    I hate this because it is not definite. I want to DEFINITELY know when my webstart app is open and I can close this original window. Like a whenWindowExists then close me but I have no clue how to do this.
    The "where_to_next" location is a servlet that will dynamically build a jnlp file specific for each web app building it from parameters in web.xml for each individual web app. Basically I will have to store the actual name of the class, the jar href's I will be needing, title, vendor, description, basically everything that can be different.
    So what I need is some kind of library so I can include it in multiple web apps EASILY. I don't want to have to write a document on how to include this thing. It should be self explainatory. I originally just mapped to the first servlet in my web.xml and then included the jar file but it appears to be non-existent in my project. Maybe some suggestions on what others would do may help me.
    Thanx in advance

    I don't want to use a timer because who knows if the servlet that writes out the dynamic jnlp will get hung up for a little while or any number of other reasons. If that did happen the timer would kick off and close my web start app. I cannot have this.

  • Regarding Closing the application

    Hai Experts,
    I have developed an application with table UI element and in that table if i select the record i.e lead selection it has to navigate to another new application.This operation is working fine but if the new application opens on that time i need to close the application with table UI element.
    I dont know how to close the application .Can u tell me the solution? 
    With Regards

    Hi,
    Here u can make use of Exit Plug.In the window create an outbound plug of Exit type with Interface Check box ticked along with an importing parameter CLOSE_WINDOW of type boolean.
    Also create and inbound plug in the window and in the handler methos of this plug,fire the exit plug as,
    wd_this->fire_<exitplugname>( close_window = 'X').
    Now in ur view,while selecting via lead selection,on the action fire the outbound plug of the view that is linked with the exit plug of the window.
    Now while ur record is selected,the outbound plug of the view calls the exit plug and in turn coding inside the hander is executed and the applicaton window is closed.
    Hope it helps u!!!!!!!!
    Thanks,
    Divya.S

  • Prevent user from closing the applications

    Hello,
    we would like to deploy to our users web application using Internet Explorer which is published over RemoteApps. Because this application takes long time to load we would like to prevent user from closing application. So we would like that session and application
    stays opened when the user clicks on close button on Internet Explorer that is published over RemoteApps.
    In other words, we would like to disconnect client from RemoteApp session, but stay logged in and keep the application running in the background.
    Is this possible to do?
    Thank you!
    Best wishes,
    Marko

    Hello,
    thank you all for your answer. I guess this is not a good news. Any other idea how to solve this problem - to start Internet Explorer web application as soon as possible.
    Last week I have found a VB script on one forum that would close the RemoteApp Windows without closing the appliaction on server but I can't find it today. Does anybody know something about this script?
    Thank you!
    Best wishes,
    Marko

  • Error when closing the application

    Greetings,
    I'm having a strange problem when I do close the application xcelsius.exe; the error info is this one:
    AppName: xcelsius.exe      AppVer: 1.1.0.3      ModName: msvcr80.dll
    ModVer: 8.0.50727.762      Offset: 0000eb36
    This problem only happens when I'm logged as a normal user under Windows XP.
    Under Windows Vista the error message doesn't appear and it quits just fine.
    I've installed the application as Administrator in both machines, but this problem only occurs when I'm using an user that belongs to the "Users" group. If I try to do the same using an user that belongs to the "Administrators" group then the application will close and no errors will appear.
    I've tried different versions of the Visual C++ Redistributable installations but with no success.
    I'd like to get more information about how to solute this bug. Can anyone support on it ?
    Best Regards,
    Diogo Reis

    Hello Diogo,
    This is a known issue.  It is required that the user be an Administrator, as detailed in the release notes of SP1/FP1.
    The same issue will occur in Vista if UAC is enabled.

  • After closing the Firefox browser, a message appears "Severe error: Cannot load resource file; can not run". What could be wrong?

    The message: "Severe Error; Can 't load resourse file; can not run" appears after closing Firefox4. All other applications on my pc do not have this problem.

    I've found text of this error in npdjvu.dll plugin, remove it and error seems to disappear.

  • After closing the firefox browser of new 4.0 it hangs and says its still running but no browser is visable, XP on 3.6 didnt have the issue ..so whats up???

    Open browser then close no browser is open and then click to re-open the browser it says it is still running and cannot get another browser for about a 45 sec....have Windows XP and didn't have the issue on 3.6 version.

    https://support.mozilla.com/en-US/kb/Firefox%20hangs <br />See '''hang-at-exit'''

  • ITunes stopped working on windows 8 while closing the application

    while closing itunes it stopped working unexpectedly, i faced this problem for more than couple of times. last time when i tried to debug it using microsoft visual studio I got a result like " Unhandled exception at 0x77D2A94F (ntdll.dll) in iTunes.exe: 0xC0000374: A heap has been corrupted (parameters: 0x77D3E1E8). " what may be the problem? and how can I fix it?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    It shouldn't really take that long to do, assuming it goes smoothly.
    tt2

Maybe you are looking for

  • How do I make simple movies for my website?

    I would like simple movies to start playing when navigating between pages on my website. For example, I would like 3-4 movies to start playing simultaneously as thumbnails and clicking on the thumbnail would start the movie selected. Is this possible

  • Oracle COM Automation - Oracle 10g 10.2.0.1.0

    Hi, I am trying to install the COM automation features available in Oracle 10g. But my installation of Oracle only contains the COM demo scripts. There is no comwrap.sql that installs the ORDCOM api. I looked through the products.xml file in my stagi

  • Skype does not want to join group calls at all.

    Hello.I recently got this very unusual problem with Skype. While I was talking in a group conversation, my internet bugged out, and as a result, of course, it kicked me out of the call. Afterwards, the internet started working just fine,  but now it

  • Dreamweaver or imageready or keynote or...

    I have a number of images that contain and item that I need to "pulsate". If would be nice if that pulsating image was also a hot link but that is not a must. Then the whole page needs to dissolve (very coarsely) into the next image/page. Can this be

  • HTTPS POST

    I'm trying to do a HTTP POST; however, the communication is HTTPS. I know that labview TCP doesn't support  HTTPS. But is there was way around this? Thank you! -Than