Hello,
I am trying to find a way to extract SAP table information. I have used RFC_GET_TABLE_ENTRIES to get the data from any table. But there are limitations to this approach.
I want to find out if there is any other way to directly access SAP tables through my C# program either using .Net connector or without it.
Thanks in advance.
Hi Vinay,
it is a wrong idea! Some of our customers are still thinking in dimension of small database applications!
SAP WebAS ("SAP basis") has 15-20.000 database tables. There is no public data model. To organize our development we are using business object model with object's methods. You can use BAPIs (or Enterprise Services in future) to call our business objects. Real database table(s) used by method call depends on SAP WebAS release or application release and patch level and customizing but you have still the same method interface.
Jiri
Hi Jim,
THe problem with using RFC's or ABAP's is you need upload them to SAP.
This becomes annoying when especially we want to get data from specific tables.
Why has SAP provided a RFC_READ_TABLE module which is basically an errorneous program and breaks if something is bigger than 512?
This means there is need to get the data outside SAP. But it just that this kind of RFC's create confustion among developers like me who would rather stic to C/C++ instead of writing a ABAP and dumping a comma separated data file.
So i am back to square one. Any one knows how i can extract a particular tables data, selectively by specifying columns and/or where conditions from outside SAP.
Add a comment