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
Explain the disadvantages of logical databases?
Explain get cursor field?
How can we upload a text file having delimiters in to legacy system? : abap bdc
How do you process errors in session method ? : abap bdc
What is ps structure? : abap hr
A field containing currency amounts (data type curr) must be assigned to a reference table and a reference field. Explain?
Give an example of interface from your project explaining why you used it?
What are local objects?
wat are the process that can be executed & tracked in a workflow?
how to use the xk01 in realtime.can it apply the others. how it it will goes to first page and next page.
Explain what is the purpose of sap script?
What is size category?
when are objects are passed from task to the change request?
What are internal tables? How to use a specific number occurs statement?
How to read files and process BDC's automatically ?