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

Can we call Remote Endable Module from another Remote Enabled Moduel

Former Member
0 Likes
613

Hii experts...

I have a problem regarding Remote Enabled Module Function Module....

Actually i want to call the standard BAPI 'BAPI_GL_GETGLACCBALANCE' into the BAPI which i hve created...

is it possible???

or can anyone tell me if it is not possible then what is the alternative for this..???

1 ACCEPTED SOLUTION
Read only

Clemenss
Active Contributor
0 Likes
577

'Remote enabled' means that you can also call the function remotely. The 'Remote enabled' characterstic implies some restrictions for the FMs interface, i.e. parameters can not be passed by reference because the remote system has no access to the memory of the called systems where the referenced data are located.

Remote call means only a restriction for the remote call, not for any direct call.

Regards,

Clemens

Hii experts...

I have a problem regarding Remote Enabled Module Function Module....

Actually i want to call the standard BAPI 'BAPI_GL_GETGLACCBALANCE' into the BAPI which i hve created...

is it possible???

or can anyone tell me if it is not possible then what is the alternative for this..???

3 REPLIES 3
Read only

Former Member
0 Likes
577

Hello,

You can call the standard BAPI from your own RFM .Please go ahead.

Read only

Clemenss
Active Contributor
0 Likes
578

'Remote enabled' means that you can also call the function remotely. The 'Remote enabled' characterstic implies some restrictions for the FMs interface, i.e. parameters can not be passed by reference because the remote system has no access to the memory of the called systems where the referenced data are located.

Remote call means only a restriction for the remote call, not for any direct call.

Regards,

Clemens

Read only

Former Member
0 Likes
577

Thanks Clemens...