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
If yes then why do we require logical database
What are the different types of data dictionary objects? : abap data dictionary
Define the various contents of technical specifications ?
How can we handle table control in bdc? : abap bdc
What is the difference between a dialog program and a report?
What are the differences between table and structure in data dictionary?
What is erp? : sap abap hr
Write special commands of list?
any 1 having notes on SAP-ABAP certification, or even if any 1 could provide the url for getting notes on SAP-ABAP certification, would be appreciated.
What is screen flow logic? What are the sections in it?
Name the abap/4 modularization techniques? : abap modularization
what is the purpose of BAPI BAPI_CUSTMATINFO_GETLIST What is input and output of this BAPI.
What are the differences between a database index and a match code?
What are the different control break statements available inside a loop?
What are the steps in creating screen ?