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
How will you define posting procedures?
Explain what are the events used in interactive reports?
What will exactly the hide statement do?
How are the date abd time field values stored in sap?
What are the differences between se01, se09 and se10?
Have you set up a back ground job? How to create a background job without a variant ? : abap bdc
Explain the differences between interactive and drill down reports?
How to write a code for multiple transactions? : abap bdc
Differentiate between report and dialog program
What is pass by value and what is pass by reference? Which is better?
Why do we use types statement in abap programming?
How to define selection screen?
Normally how many and what files get created when a transaction program is written?
How do you connect to the remote server if you are working from the office for the client in remote place?
Difference between sy-tabix and sy-index?