nerdexam
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)
  • A
    4% (2)
  • B
    70% (32)
  • C
    17% (8)
  • D
    9% (4)

Community Discussion

No community discussion yet for this question.

Full C_TAW12_71 Practice