cancel
Showing results for 
Search instead for 
Did you mean: 

RFC And Transparent Table

Former Member
0 Kudos

Hello, i'm beginner of SAP.

Recently ,I have created some transparent table in SAP.

And i would like to build a java program and using JCo to

add some data in those table.

Therefore, can i create a RFC and call it via JCo.Is it just a simple Open SQL inside the RFC?? If so, is there any reference?

Accepted Solutions (1)

Accepted Solutions (1)

athavanraja
Active Contributor
0 Kudos

yes, simply create aRFC fm in ABAP engine with a code to update the tables and you can call this RFC from your java program using jco.

the system BAPIs for creating for example sales order, purchase order, etc all does this kind of logic.

Regards

Raja

Answers (1)

Answers (1)

Former Member
0 Kudos

yes you can build an rfc to fill data to transparent table in abap

build a function module which takes a input as a table type/internal table like your transparent table.

then build a bapi for this rfc.

now this is like a business object.

and you can call it from java

check this to start:

http://www.sapgenie.com/sapgenie/docs/BAPI%20JCO.pdf

regards