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

Read Statement

Former Member
0 Likes
554

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
Read only

Former Member
0 Likes
392

Hi Sujitha Arunachalam,

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

Thanks & Regards,

Faheem.

Read only

0 Likes
392

Thank you..