cancel
Showing results for 
Search instead for 
Did you mean: 

Exit-Button in WebInterface

Former Member
0 Kudos

Hi all,

I embedded an input mask in the webinterface builder.

additionaly I created a container with three buttons (ExitButton, SubmitButton and SaveButton).

If i click the ExitButton the SAP-Standard page appears (Connection to Application Server Was Closed; Start Planning Application Again: http://.....").

Is there a way to redirect e.g. to an internet-page?

thanks

Marc

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member93896
Active Contributor
0 Kudos

Hi Marc,

anything is possible ;-). Try this: Add a new page to the web interface. All you need on this page is a HTML text component with the following script:

<p>
Application closed. You will be redirected to Yahoo now.
</p>
<script language="JavaScript">
function yahoo() {
  parent.open("http://www.yahoo.com/","_self");
}
setTimeout('yahoo();',3000);
</script>

Finally, add a navigation button to your regular page(s), point it to your new exit page and set "end command = true".

Regards,

Marc

SAP NetWeaver RIG

Former Member
0 Kudos

Hi Marc,

thanks; You always just have to know how to do it

Works perfect. Best regards

Marc

Former Member
0 Kudos

Hi Marc,

Thanks for your post on this one with which i resolved my problem as well.

Cheers,

vM