Login
Remember
Register
Ask a Question
Syntax for Loop in ABAP.
0
votes
asked
Apr 13, 2022
in
SAP ABAP
by
john ganales
Syntax for Loop in ABAP.
a) LOOP AT <internal table> INTO <work area>
b) LOOP AT <internal table>
c) Both the syntax
d) None of these
abap-loop
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Apr 13, 2022
by
john ganales
c) Both the syntax
Syntax for Loop in ABAP. are as below:
LOOP AT <internal table> INTO <work area> or LOOP AT <internal table>
...