cancel
Showing results for 
Search instead for 
Did you mean: 

navigation->goto_page into a new page

Former Member
0 Kudos

Hi All

I would like to open a new internet explorer when I execute the code navigation->goto_page( ' name.htm' ) as a target tag with HTML

best regards

Jérôme

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

you´re trying to combine 2 ways of navigation in 1 and it doesn´t work. Navigation->goto_page takes you to the next page that must be displayed in the browser and you want to open a new window with another page, so you´re not navigating. What you have to do is define an attribute in your page (target_page, f.e.); then you have to get the name of the page that must be called into that attribute. As a 3rd. step you call then the Javascript code that opens the window with that page:

script language="javascript">
  var url = "<%= target_page%>";
  newwindow = window.open(url, "Newwindow", "fullscreen=no, resizable=yes, height=580px, width=300px, statusbar=no, menubar=no");
  newwindow.focus();
</script>

You can also declare directly the target page instead of using an attribute in the javascript code. I hope I express myself clear.

Former Member
0 Kudos

Ok then... The good anwser is that it isn't possible with a navigation->goto-page

former_member233090
Active Contributor
0 Kudos

Hi,

check this example

http://www.sapdev.co.uk/webapps/bsp/bsp_favinitial.htm

cheers

bhavana

Former Member
0 Kudos

sorry

I did it but may be I'm not enough smart, but I dont see how to open a new bps page into an another internet explorer window.....

former_member233090
Active Contributor
0 Kudos

Jerome,

check this out - a new page opens in a new window.

Hope this helps.

Cheers,

Bhavana