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 is a badi?
How is conversion of data types done between abap/4 & db layer?
What is a view in sap? : abap data dictionary
Explain what is an rdbms?
What are the payroll related Infotypes
What is evaluation path, where do we do it and why? : sap abap hr
What is the purpose of creating symbolic a/c, what is transaction code for same? Can we assign one symbolic a/c to multiple wage types? : sap abap hr
What is a table attribute? : abap data dictionary
How to insert a line into abap internal tables?
Define structure in abap data dictionary?
Can we set page headers to details lists?
What’s value table?
What is at exit-command:?
what is the purpose of BAPI BAPI_CUSTMATINFO_GETLIST What is input and output of this BAPI.
Can i Have Some Realtime Examples on Badi ?