cancel
Showing results for 
Search instead for 
Did you mean: 

BSP page path

Former Member
0 Kudos

Hi,

i am trying to open an BSP page from abap report and i need to no something.

in the URL i am passing

'http://<domain>:<port>/sap/bc/bsp/sap//bshp/fw_list_del/default.htm'

but once the page is opened i see something added to page path like the part with under line

http://<domain>:<port>/sap(<u>bD1lbiZjPTE1NQ==</u>)/bc/bsp/sap/bsp_app/start.htm

what is that and from where is comes?

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

Just FYI...This is session dependent and if you change the session it will change...It's exacrt purpose is as described by Grahrm.

Cheers,

Tatvagna

Message was edited by:

Tatvagna Shah

RieSe
Contributor
0 Kudos

Hi,

use the static method of

CALL METHOD cl_o2_helper=>generate_url_for_page

EXPORTING

p_page = pagename

p_secure_http = ' '

IMPORTING

p_url = guest_login

EXCEPTIONS

OTHERS = 1.

Check where used list to parametrize. It's very simple.

Regards,

Stefan

GrahamRobbo
Active Contributor
0 Kudos

Hi Lez,

what your are talking about is often refered to as the URL-mangling code. This is generated by the server and it contains various settings that are not handled by the standard user authentication methods of web browsers, which really only support username password.

So the sort of things that are embedded in this piece of data are the sap client, logon language, themes, etc.

Cheers

G