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: 

Read Statement

Former Member
0 Kudos

Hi,

I have a doubt with read statement.

Read table i_tab into wa_itab with key matnr = x.

Now, if the above statement has 2 matching rows,say

x c1

x c2

will the first matching row's content (x c1) be moved to wa_itab or will it result in an error?

2 REPLIES 2

Former Member
0 Kudos

Hi Sujitha Arunachalam,

It will not throw any error, it will read the first record i.e, x c1.

Thanks & Regards,

Faheem.

0 Kudos

Thank you..