No WRITE TO for Internal Tables

The WRITE TO statement is not allowed in ABAP Objects for internal tables.

In ABAP Objects, the following statement causes an error message:

WRITE ... TO itab INDEX idx.

Correct syntax:

FIELD-SYMBOLS <fs> TYPE ...

READ TABLE itab INDEX idx ASSIGNING <fs>.
WRITE ... TO <fs>.

Reason:

Field symbols can be used for direct access to table rows. The WRITE TO statement for table rows is superfluous.