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

RFC .

Former Member
0 Likes
493

The requirement is:

i have created YRFC(RFC enabled Function module) from there i have to call a report program passing value to select-options (that i am doing it by using Submit statements & it's doing fine) Now the Problem is i want to export the values(final values from report program) again to the funtion module. kindly help me out if anyone knows.

3 REPLIES 3
Read only

Former Member
0 Likes
469

Hi

RFC (Remote Function Call) is similar to the general SAP fun module: except that in the attributes you click the radio button: RFC enabled;

and you will be passing an Import parameter DESTINATION to it.

Other code and usage will be similar to any fun module;

Have a look at any fun module in SE37 to understand better about the different components of Fun modules;

Refer this link:

http://help.sap.com/saphelp_nw04/helpdata/en/22/042518488911d189490000e829fbbd/frameset.htm

Reward points for useful Answers

Regards

Anji

Read only

Former Member
0 Likes
469

HI,

in the report programme

what you will do is

export the data into an id

and import the same data in the function module

EXPORT tab_DISCOUNT TO MEMORY ID 'CP_DISCOUNT'.

this is a structure

now import

IMPORT tab_DISCOUNT FROM MEMORY ID 'CP_DISCOUNT'.

in your function module

reward points if helpful

regards,

venkatsh

Read only

Former Member
0 Likes
469

Tks Venkatesh for u'r help, it' working good,Once again Tks