cancel
Showing results for 
Search instead for 
Did you mean: 

Launching web page without address bar

Former Member
0 Kudos

Hi everybody!

Very simple : we developped a transaction using 'CALL_BROWSER' FM to launch a web BSP. I don't want users to see the parameters we send in the URL.

How should I execute 'CALL_BROWSER' in order to launch a new Internet Explorer page, without address bar ??

Thanks a lot!

François

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi François,

Don't know how to do it with the FM.

Is it not an option to redirect the page with window.open and close the first page.

That way you are able to hide the adressbar.

Dirk.

athavanraja
Active Contributor
0 Kudos

on possibility is to change the BSP page extension from htm to .hta, but this will first throw the browser security warning.

Regards

Raja

Answers (2)

Answers (2)

Former Member
0 Kudos

Thanks to all of you for the help.

I did not find how to parameterize correctly the FM, maybe it's not so easy.

The pop-up system is a good alternative.

The best way to use it is to have the following page at first :

<script language=javascript>
function resize() {
myWindow=window.open("WELCOME.htm", "WELCOME", "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,location=no,width=800,height=600,left=0,top=0");

this.focus();
self.opener = this;
self.close();
}
</script>

<body onLoad="resize();">
</body>

It opens the active window with no bar, and closes itself without any message.

Thanks.

François

Former Member
0 Kudos

hi,

You can use javascript to hide the address bar or address check the link below for script:

http://www.experts-exchange.com/Web/Web_Languages/JavaScript/Q_20782379.html

regards,

Hemendra

Former Member
0 Kudos

Hai

check out this example,May be it helps u

<HTML>
<SCRIPT LANGUAGE="JScript">
window.open("about:blank",null,"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
</SCRIPT>
<BODY>
Some text
</BODY>
</HTML>

remove the lines that u have after u open window, SO the page will not close.

regards,

venkatesh