When looping over internal tables, it is generally preferable to ASSIGN
to a field symbol rather than loop INTO
a work area. Assigning field symbols simply updates their reference to point to the next line of the internal table during each iteration, whereas using INTO
results in the line of the table being copied into the work area, which can be expensive for long/wide tables.