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

Internal table?????????

Former Member
0 Likes
335

data: begin of itab occurs 0,

field1(10),

field2(10),

end of itab.

Move: 'A' to itab-field1,

'B' to itab-field2.

Append itab.

Append itab.

Move: 'B' to itab-field1.

Append itab.

Clear itab.

Move: 'A' to itab-field2.

Append itab.

What are the contents of itab after executing the above code?

a) A B

A B

B B

A

b) A B

A B

B

A

c) A B

B

A

d) A B

B A

A

e) A B

B A

B A

B A

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
301

ans is b

1 REPLY 1
Read only

Former Member
0 Likes
302

ans is b