cancel
Showing results for 
Search instead for 
Did you mean: 

WebDynpro Java how to close windos

Former Member
0 Kudos

I would like to create the button action to close windows itself.

Does anyone know how to do it ?

Do I need to use JavaScript file ?

Thanks,

Koji Nagai

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Koji,

You can refer to this thread below for closing the browser window from Web Dynpro application:

[;

Regards,

Pavithra

Former Member
0 Kudos

Hi,

Can you be more clear on your requirement ?

If your requirement is to just close the browser, below script would help

function closeWindowNoPrompt()
{
    window.open('', '_parent', '');
    window.close();
}

Regards,

Vijay.

junwu
Active Contributor
0 Kudos

search "javascript close window" in this forum, you will find it.