SAP
C_TAW12_740 · Question #72
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
(65 responses)- A5% (3)
- B83% (54)
- C11% (7)
- D2% (1)
Community Discussion
No community discussion yet for this question.