‎2008 May 31 3:21 PM
hello SAP Gurus,
I have one doubt.How we can read each time 4,8 and 12 records of a table ?
can u give me the answer ?
Thank you very much.
regards,
vijaya.
‎2008 May 31 3:23 PM
hi do like this..
read table itab with index 4 .
read table itab with index 8 .
read table itab with index 12 .
regards,
venkat
‎2008 May 31 3:23 PM
hi do like this..
read table itab with index 4 .
read table itab with index 8 .
read table itab with index 12 .
regards,
venkat
‎2008 Jun 01 9:08 AM
loop at itab.
if sy-tabix = 4 or sy-tabix = 8 or sy-tabix = 12.
;;;;
endif.
endloop.
loop at itab.
if sy-tabix = 4
endif.
if sy-tabix = 8.
endif.
if sy-tabix = 12.
;;;;
endif.
endloop.