SAP
C_TAW12_71 · Question #346
You want to loop over an internal table without copying each table row to a work area. How can you achieve this using a field symbol?
The correct answer is B. LOOP AT <itab> ASSIGNING <field_symbol>. ENDLOOP. See the full explanation below for the reasoning.
Question
You want to loop over an internal table without copying each table row to a work area. How can you achieve this using a field symbol?
Options
- ALOOP AT <itab> REFERENCE INTO <field_symbol>. ENDLOOP.
- BLOOP AT <itab> ASSIGNING <field_symbol>. ENDLOOP.
- CLOOP AT <itab> TRANSPORTING INTO <field_symbol>. ENDLOOP.
- DLOOP AT <itab> INTO <field_symbol>. ENDLOOP.
How the community answered
(46 responses)- A4% (2)
- B70% (32)
- C17% (8)
- D9% (4)
Community Discussion
No community discussion yet for this question.