No WRITE TO for Internal Tables

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

Error message in ABAP Objects for:

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.

Overview:

Replacement for Obsolete Statements ABAP Objects