I get the error
when activating the code. The message points to a normal internal table read. asked 23 Jan '13, 17:39 pedrolima ♦♦ |
This message shows up when there is something wrong with the parameters of the read table call. Check that the variable that read table is reading from is really a table and not a structure. answered 23 Jan '13, 17:40 pedrolima ♦♦ |
Unfortunately some classic ABAP statment aren't supported in OO ABAP. Provide some code so we could find other approach. answered 07 Feb '13, 14:11 Pawel Hixohe... |
OO Abap does not support tables with status lines, and requires you to specify a record (or a ref to record, or field-symbol) to read your data into.
All in all this is a good thing and breaks some bad habits. answered 08 Feb '13, 16:35 Marius Pieda... |