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