cancel
Showing results for 
Search instead for 
Did you mean: 

BSP using RFC connection

Former Member
0 Kudos

Is there a option on the BSP application 'system' HTML page login.htm to select a R/3 system you want to RFC to ? For example I've created a BSP application which references the system login page and I need the option to select a destination R/3 system. Note I've already set-up the RFC connections via SM59 all I need to do now is build the functionality in the login.htm for RFC selection. Does SAP have a solution for such a scenario or do you have to custom build this ? Any suggestions would be appreciated.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

I'm not sure if there is such a thing deployed with WAS 6.10 / 6.20 but you can do this own very easy. Use a HTML drop-down list to select a destination - the destination name selected could be stored in a server-sided cookie to be available during the complete session and then you can do a remote function call.

CALL FUNCTION 'BAPI_CURRENCY_GETLIST'

DESTINATION selecteddestination

....

Be aware that you have to read the selected destination from the server-sided cookie every time a BSP-page ist requested.

CU

-s