Is there any functional module through which we can read the table contents which is not a RFC enabled? There's a table which is RFC disabled and I need to access the contents using RFC... RFC_READ_TABLE isn't working in this case...
Asked
Active
Viewed 1,147 times
-1
-
4is there an RFC flag for tables? I can see none in SE11. Which table are you trying to access? – Stefan Ernst Apr 27 '11 at 08:54
2 Answers
1
RFC_READ_TABLE has a few limitations, for example it does not support unicode and it has problems with binary data and some datatypes like FLTP. SAP published a note (note # 758278) to either repair the function module RFC_READ_TABLE or copy it and modify your customer copy.

Dirk Trilsbeek
- 5,873
- 2
- 25
- 23
0
RFC_READ_TABLE is mostly used for generic reading of "any" table (with noted limitations). If you have a specific requirement, you might be more successful with a specifically designed (rfc enabled) function module that returns exactly what you need. This would give you the opportunity to provide a more strongly typed dataset (so you could get something back with actual columns, not just a big text structure that has to be parsed).

snow_FFFFFF
- 3,235
- 17
- 29