Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

how can i get data from the other system?

Former Member
0 Kudos

hi,

i want get some data from the other r3 system in my r3 system? now this two r3 system are installed two server.

1 ACCEPTED SOLUTION

former_member404244
Active Contributor
0 Kudos

Hi,

U can achieve this by RFC function module...

create a function module and make it as REMOTE ENEBLED IN ATTRIBUTES TAB..

for example i have to r/3 systems as A and B.

I want to get data from B system..

so create the FM in B system and then in A SYSTEM u have to call that one ,like this....

DESTINATION NAME IS FOR SYSTEM B.

CALL FUNCTION 'ZRFC' DESTINATION <DESTINATION NAME>

EXPORTING

...

IMPORTING

....

TABLES..

....

Regards,

Nagaraj

3 REPLIES 3

varma_narayana
Active Contributor
0 Kudos

Hi..

You can acheive this by Calling the relavant RFC / BAPI on the Remote System.

Steps:

1. Check the Relevant RFC/Bapi . Or Create a new one in the Called system (From Where data has to be accessed

2. In the Sending system Create RFC Destination (Tcode SM59). Basis admin will do this.

3. Call the RFC/BAPI from Sender system

Former Member
0 Kudos

establish an TCP through SM51

design an Function module which will be RFC enabled...

write code to access the data from 2nd server the way yuo'l do it on the actual server...

this rfc connection will read the data from the 2nd server

former_member404244
Active Contributor
0 Kudos

Hi,

U can achieve this by RFC function module...

create a function module and make it as REMOTE ENEBLED IN ATTRIBUTES TAB..

for example i have to r/3 systems as A and B.

I want to get data from B system..

so create the FM in B system and then in A SYSTEM u have to call that one ,like this....

DESTINATION NAME IS FOR SYSTEM B.

CALL FUNCTION 'ZRFC' DESTINATION <DESTINATION NAME>

EXPORTING

...

IMPORTING

....

TABLES..

....

Regards,

Nagaraj