How to move the even records of one internal table to other
Answer Posted / ariv
types : begin of ty_vbak,
vbeln type vbeln_va,
erdat type rdat,
end of ty_vbak.
DATA: it TYPE TABLE OF ty_vbak,
it1 TYPE TABLE OF ty_vbak,
wa type ty_vbak.
data: LO type I VALUE 1.
SELECT vbeln erdat FROM vbak INTO TABLE it UP TO 10 ROWS.
LOOP AT it INTO WA.
IF SY-TABIX = LO.
APPEND WA TO IT1.
LO = LO + 2.
ENDIF.
endloop.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Difference between top-of-page and top-of-page during at line- selection?
What are the two levels in defining a match code ?
What is the tcode to create indexes?
What are the differences between a database index and a match code?
When the top-of-page event does get triggered?
identify valid statement when coding a field exit ? a) submit RSCA101X b)MESSAGE E101 C)MESSAGE I101 d)BREASK-POINT
What are logical databases?
What is sap abap tables?
How do you work with semi colon se[arated files in BDC ?
What is personnel sub are
What is append search help? : sap abap data dictionary
If your project is support project ? when is your implementation has completed ?
Explain the Inportance of pa30? : abap hr
How many types of buffering? : abap data dictionary
What are the main uses of the primary key?