cancel
Showing results for 
Search instead for 
Did you mean: 

Connecting back-end systems using RFC

Former Member
0 Kudos

Dear Friends,

I want to practice on Connecting back-end systems using RFC.Can anybody help for this.Any example...

Thanks.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

thx for all

Former Member
0 Kudos

Hi Jaten,

As Vijay said, we can connect other systems running in different client through RFC's where our own source program is written. The sample code is as follows:



call function '<FM name>' destination '<Server><Client><ClientNo>'
          exporting
                         <Parameters>
          importing
                         <Parameters> .


Reward points if helpful.

Regards,

Gokul.N

Former Member
0 Kudos

Check the following link :

Former Member
0 Kudos

But Dear its for VB.Net .I want to learn with BSP.

former_member188685
Active Contributor
0 Kudos

in BSP you can call RFC's , Function modules and also you can write the code as well. BSP application with ABAP always interacts with back-end system for any Data retrieval , validations related to ABAP and for any data updations. Just read the documentation on BSP.

Former Member
0 Kudos

Hi Jaten

You can directly use the statement CALL FUNCTION RFC NAME DESTINATION (Enter the RFC Destination name for the server you want to connect with. This is maintained in TCode SM59). You can write this code depending on the BSP model you are using i.e. Controller in case of MVC architecture and Events in case of the old BSP architecture.

For e.g. Refer BSP Application HCM_LEARNING page "trainingtype.htm" check Line No.83 for the RFC Call.

Regards

Vipul

Edited by: Vipul Musale on Oct 17, 2008 2:42 PM