How to move the even records of one internal table to other
Answer Posted / abapguru
data: lv_div type f.
loop at itab.
lv_div = sy-index / 2.
if lv_div = 0.
move itab to itab1.
append itab1.
endif.
endloop.
| Is This Answer Correct ? | 12 Yes | 5 No |
Post New Answer View All Answers
What statement will be found in an sap application program that implements a function module exit?
What are the 2 other types of views, which are not allowed in release 3.0?
Differentiate between ooabap and abap?
What is the significance of hide?
What are base tables of an aggregate object?
When is the top-of-page event triggered? : abap data dictionary
How to add a column to a table control while using alphanumerical layout editor ?
What are the dynamic actions and how to configure it? : sap abap hr
What are the user interfaces of interactive lists?
I created a field and entered the field type, when I double clicked the field type to define the domain; it is asking for an ACCESS KEY, I am not changing any SAP defined tables, working on a user defined table.
Explain the advantage of structures?
In which table the material master data is stored?
What is a subroutine?
Explain what is a foreign key relationship? Explain this with the help of an example.
when run my program in se38 it was showing output, when i take background execution and giving printer details it was shoing out put. but in SP01 when i give the Spool Request Number it was showing not yet processed entire page why it happens i dont know please give me a solution.