Application Development 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: 

Internal table?????????

Former Member
0 Kudos

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

Former Member
0 Kudos

ans is b

1 REPLY 1

Former Member
0 Kudos

ans is b