Hi sdn,
I used alert function in javascript to show me what the current URL is. For some reason I am only getting the latter part of the URL part starting with /sap/bw and the beginning portion of the URL is missing. I do not get 'http://...' etc. in the return value.
My javascript is a simple alert(SAP_BW_URLGet()).
What might be wrong?
Thanks in advance.
Saf.
Safdar,
teh URL_Get fn is used to get the query string alone which is the part of the URL after the ?.....
If you want the full URL use location.href instead...
This is because the query string is the most important part of the URL...
alert(location.href) would do the job for you..
Arun
Assign points if useful
Hi
Guess there is nothing wrong because of this is enough to start a link etc out of a running application.
Regards,
Beat
Add a comment