nerdexam
SAP

C_TAW12_731 · Question #6

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

(39 responses)
  • A
    8% (3)
  • B
    77% (30)
  • C
    13% (5)
  • D
    3% (1)

Community Discussion

No community discussion yet for this question.

Full C_TAW12_731 Practice