Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

general

Former Member
0 Likes
407

Given:

DATA: BEGIN OF itab OCCURS 10,

qty type I,

END OF itab.

DO 25 TIMES. itab-qty = sy-index. APPEND itab. ENDDO.

LOOP AT itab WHERE qty > 10.

WRITE: /1 itab-qty.

ENDLOOP.

This will result in:

A: Output of only those itab rows with a qty field less than 10

B: Output of the first 10 itab rows with a qty field greater than 10

C: A syntax error

😧 None of the above

Hi,

Its B.

2 REPLIES 2
Read only

Former Member
0 Likes
355

Hi

Answer

B

Reward points for useful Answers

Regards

Anji

Read only

Former Member
0 Likes
355

Hi,

Its B.