cancel
Showing results for 
Search instead for 
Did you mean: 

How to find the browser URL info for all tcodes ?

Former Member
0 Kudos

Hi All,

My query is regarding, how to open or access the tcodes in web browser rather in SAP frontend..

For example: We can open the WEBGUI SAP EASY screen from the service "WEBGUI" in SICF tcode, like that I want to open the tcodes directly in browser, If I copy and paste that same URL in other browser, I should directly take into that particular tcode page rather than going via SAP EASY SCREEN and then execute the same tcode.

If there is any way to find the URL info for each tcodes ? ?

Please suggest your inputs. Your inputs are much appreciated.

Regards,

Gopinath CB

Accepted Solutions (1)

Accepted Solutions (1)

harsha_jalakam
Active Contributor
0 Kudos

Hi Gopinath,

This would be link/url for opening all SAP t-codes through browser.

http://<FQDN>:portno/sap/bc/gui/sap/its/webgui?~TRANSACTION=VA01




Regards,

Harsha

Answers (4)

Answers (4)

Former Member
0 Kudos

I want to set a username and password for link, is there anyway to do this ?

Regards,

Gopinath CB

harsha_jalakam
Active Contributor
0 Kudos

I think there is no authenticated way to do that send user name and password in such way, as sending username and password in URL is not recommended.

Former Member
0 Kudos

Hi Harsha/KR,

When I open the tcodes in above format, it is asking for username and password, how to set SSO or to open the link without asking username and password. Can you just provide your idea ?

Regards,

Gopinath CB

harsha_jalakam
Active Contributor
0 Kudos

Hi Gopinath,

If you are launching it from portal or from NWBC SSO or from WebDynpro Appication can be configured. If it is provided as an link, then I think it is correct to promt for user credentials.

Regards,

Harsha

Former Member
0 Kudos

Thank you Harsha, it worked for me

Former Member
0 Kudos

Hi Gopinath,

Use the below method  get T-Code Address for browser

DATA: lv_host type string,

            lv_port type string,

            lv_protocol type string.

DATA lv_url type string.

CALL METHOD cl_http_server=>if_http_server~get_location

     IMPORTING

       host = lv_host

       port = lv_port

       out_protocol = lv_protocol.

 

concatenate lv_protocol  '://' lv_host  ':' lv_port  '/sap/bc/gui/sap/its/webgui/?sap-client=&~transaction='VA02' into lv_url.

Note: lv_url is final URL.

        'VA02' is example transaction. you may replace it & symbol for easy access or other transaction code which you want to navigate to.

thank you,

KR