I have the following query
loop at int_tab1 into wa_tab1
read table tab2 with key tab2-field1 = wa_tab1-field2
Now for the record fetched above I want to do the following
move tab2-field2 to tab3-field3.
How can I capture the record from read statement
endloop