We have 100 records in table how to fetch 10 th record?

Answer Posted / moulika

data : begin of itab occurs 0 with header line,
f1,
f2 type i,
end of itab .

loop at itab.
if sy-tabix = 10.
write : itab-f1,itab-f2.
exit.
endif.
endloop

Is This Answer Correct ?    1 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which objects are independent transport objects?

825


Is it possible to run host command from SAP environment? How do you run?

608


What is the difference between synchronous and asynchronous update? : abap bdc

632


What is an interactive report?

610


The commands through which an abap/4 module can “branch to “ or “call” the next screen are?

627






function modules are also external subroutines. State true or false. : abap modularization

592


What functions does a data dictionary perform? : abap data dictionary

609


Difference between sap script and report?

739


Can i Have Some Realtime Examples on Badi ?

8281


Concepts of OO ABAP and why we are using it?

847


Name some data dictionary objects?

546


How to insert a line into abap internal tables?

610


What is bdc programming? : abap bdc

569


what is user specific parameter?

1666


What are the functional areas, user groups? How does abap query work in relation to these?

587