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 Function Module

Former Member
0 Likes
608

Hi Expert,

I need you help for RFC Function module SAP 4.6 C.

Q 1 ) I have defined one function module as RFC function module ,however while calling that function i don't use DESTINATION . Will that function module will be called as RFC or normal function module ?

PS: I want to call RFC function module on same system in synchronous manner .

Q 2) i have data in field symbols which is dynamically assigned during the run time to different structures. I have to pass this data pointed by field symbols to RFC Function module ?

PS: field symbols contains work area with which i need to updates database table in RFC Function module.

Q 3) How to pass generic data types to RFC Function module ?

Regards,

Rakesh Mourya.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
553

Hi,

1) If you don't specify the destination..It will be called in the same system in synchronous manner..

Thanks,

Naren

3 REPLIES 3
Read only

Former Member
0 Likes
554

Hi,

1) If you don't specify the destination..It will be called in the same system in synchronous manner..

Thanks,

Naren

Read only

Former Member
0 Likes
553

Q 1 ) If u have not specified destination to RFC, it will behave as a normal function module and will execute only in the system executed. With the specification of Destination, it will goto other system and returns back with data executed.

Q 2)U need to pass the data dynamically to function module and the same will interpret and update the database.

Read only

Former Member
0 Likes
553

done