cancel
Showing results for 
Search instead for 
Did you mean: 

Passing Credentials to SAP GUI for HTML

Former Member
0 Kudos

Hell All,

We have developed java application in which we need to open SAP GUI for HTML with the help of one key. For the same i have configured ITS and i can able to open the SAP GUI in the browser with the help of following link

[http://<ServerName>:8000/sap/bc/gui/sap/its/webgui?~transaction=*vd02%20RF02D-KUNNR=255]

But while accessing this link it is asking me the credentials of the ECC system. We need ti bypass this step. i.e. when user clicks on link , it should show the after log on screen.

Is there any method to pass the user name and password with the java code or any other method?? Any help??

Thanks

Prashant

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

You have several options to do what you want. You can use SSO (Single Sign On), so you have to sign in only first time and with user mapping access all systems.

Another option is pass user&password (security risk) as url parameters:

- sap_user

- sap_password

- sap_config_mode = true

Last one, you can define an ITS service (using SICF transaction) and configure authentication options on "Logon data" tab.

[http://<ServerName>:8000/sap/bc/gui/sap/its/webgui?sap-user=<UserName>&sap-password=<Password>&language=EN&~transaction=*RZ20]