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: 

Is there any standard RFC Function module for updating any SAP table?

Former Member
0 Kudos

Dear Experts,

<b>Is there any standard RFC Function module for updating any SAP "Y/Z" table.I have used

RFC_READ_TABLE

to read any table from SAP. In a similar fashion I have asked this question to all you experts.

The need is that, I want to update (Y/Z) tables outside of SAP using RFC only from Java? ?</b>

Is there any solutions?

Thanks

4 REPLIES 4

Former Member
0 Kudos

Hi,

I don't think we have one to update the table as most of the updates have to happen through the BAPI's.

In your case, you will have to write one yourself.

Regards,

Ravi

Note : Please mark the helpful answers

Former Member
0 Kudos

Hi RMR,

You need to have a FM in the target system where you need to update the data which is RFC enabled and which you can call form your application.

In case you dont have a RFC enabled FM @ ur target system you can send the file to that system and write a code in the target system to upload the data.

Cheers

VJ

Former Member
0 Kudos

Hi RMR,

There is no FM or RFC to update Y/Z Tables. However you can create an RFC enabled FM and write update commands in the code to update the Y/Z tables...

Lokesh

pls. reward appropriate points

Former Member
0 Kudos

Thanks Experts for the Answers!!!.