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: 

RFC will work or not

Former Member
0 Kudos

Hi Experts,

I am having a very some concern on RFC. This is what i'm doing. I created a new Z function module with RFC enabled. Within the Z FM i am calling another Fuction module, for which RFC is not enabled( it is NORMAL FM).

My Question is when i call the Z fm as RFC( i mean with Destination addition) the internal FM will be executed correctly or not.

Please help ....

- RK

1 ACCEPTED SOLUTION

uwe_schieferstein
Active Contributor
0 Kudos

Hello

This is the normal case that within an RFC-enabled fm you call local fm's. However, these local fm's must exist on the remote system (otherwise you should have get already an syntax error during the request import).

Regards

Uwe

4 REPLIES 4

Former Member
0 Kudos

Hi,

u created a Function module as RFC enable that means that function module can be call from another system also so ur function module is RFC enable then it work .

once u call ur function module it contail all what is there in that function module...

Former Member
0 Kudos

Hi,

When you call the RFC from outside it get's executed in the server side so you don't need to worry about the normal FM inside your RFC that your are calling. It executes as same as executed in SAP.

uwe_schieferstein
Active Contributor
0 Kudos

Hello

This is the normal case that within an RFC-enabled fm you call local fm's. However, these local fm's must exist on the remote system (otherwise you should have get already an syntax error during the request import).

Regards

Uwe

Former Member
0 Kudos

Thanks all for your Quick Replies......