HI Friends,
I am using a code like as below
loop at itab assigning <fl_itab>.
read table inttab assigning <fl_inttab> with key matnr = <fl_itab-matnr>.
material = <fl_inttab>-matnr.
endloop.
my questio is .
i am reading inttab internal table .if (suppose) this internal table has duplicate records for a material number which value will be assigned to output field(material).will read statement will take only the first record of many duplicate record...
please help me