How to move the even records of one internal table to other
Answer Posted / nag
REPORT ztest_report11.
TYPES : BEGIN OF ty_itab ,
kunnr TYPE kunnr,
END OF ty_itab.
DATA : itab_even TYPE TABLE OF ty_itab,
itab_odd TYPE TABLE OF ty_itab,
itab TYPE TABLE OF ty_itab,
wa TYPE itab.
SELECT kunnr FROM kna1 INTO TABLE itab UP TO 20 ROWS.
LOOP AT itab INTO wa.
IF sy-tabix MOD 2 = 0.
APPEND wa TO itab_even.
ELSE.
APPEND wa TO itab_odd.
ENDIF.
ENDLOOP.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Does the call transaction method allow multiple transactions to be processed by sap?
What is a modification assistant?
How would you set the formatting options statically and dynamically within a report?
What are internal tables? How do you get the number of lines in an internal table?
How to handle error in session method? : abap bdc
What are the steps to execute session method?
What are the different types of abap reports in sap?
How do you get the number of lines in an internal table?
Print options in smartforms?
what is difference between user exit, customer exit and badi?
What is database utility?
Differentiate between report and dialog program
In which cluster time results are stored? : abap hr
What is projection view?
Explain some essential objects in abap dictionary?