Application Development and Automation 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: 
Read only

connect B. W Function Module from R/3

Former Member
0 Likes
412

Dear Experts,

I Created one remote enabled F.M. in B.W. Server to extract data from particular tables and i want to get that F.M. Information in my R/3 Server. what i have to do please tell me every steps to get all related records in R/3 Server.

Thanks & Regards,

Vimarsh B.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
373

Hi ,

create RFC connection type R/3 in both R/3 and BW..

then call the Function module in R/3 with detination created in sm59..

CALL FUNCTION "function module name in bw" Destination 'RFC-connection inSM59'.

if any error happens check in SM58 you will know th error why and what happend..

Regards,

Prabhudas

2 REPLIES 2
Read only

0 Likes
373

You should create in your R/3 system a RFC connection (SM59) pointing to your BW system.

Next in R/3 you call the function module like this:


CALL FUNCTION XY
 DESTINATION Your_RFC_connection
 EXPORTING...
 IMPORTING...

check this out

http://help.sap.com/saphelp_nw04/helpdata/en/22/0424ce488911d189490000e829fbbd/content.htm

Read only

Former Member
0 Likes
374

Hi ,

create RFC connection type R/3 in both R/3 and BW..

then call the Function module in R/3 with detination created in sm59..

CALL FUNCTION "function module name in bw" Destination 'RFC-connection inSM59'.

if any error happens check in SM58 you will know th error why and what happend..

Regards,

Prabhudas