cancel
Showing results for 
Search instead for 
Did you mean: 

Button to Logoff and Close Browser

MVar
Explorer
0 Kudos

Hello All,

I've created a WebDynpro application with a "Logoff" button.

I want this button to logoff from the system and close the browser.

I used WDClientUser.forceLogoffClientUser(""); but it opens another window saying "You have been logged off from the system"

I do not want an extra browser coming up.

Any ideas?

Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

I have faced similar problem, and i used java-script to resolve this. I hope the following code could resolve u r problem.

<script language='javascript'>

window.opener.pageSupport.ivuRefresh(window.opener.myApplicationsIViewId);

window.close();

</script>

regards

jagdeshwar

MVar
Explorer
0 Kudos

hello jagdeshwar,

Where in the webdynpro project can I put this in?

Thanks,

Mike