How to move the even records of one internal table to other
Answer Posted / raju
TABLES:ZKNA11,ZKNA12.
DATA:it TYPE TABLE OF zkna11,
it1 TYPE TABLE OF zkna12.
data:wa like LINE OF it,
wa1 like LINE OF it1.
data: LN type I VALUE 2.
data: LN1 type I .
data: LO type I VALUE 1.
SELECT * FROM ZKNA11 INTO TABLE IT UP TO 4 ROWS.
LOOP AT IT INTO WA.
IF SY-TABIX = LO.
wa1-kunnr1 = wa-kunnr.
wa1-NAME11 = wa-name1.
wa1-LAND11 = wa-LAND1.
APPEND WA1 TO IT1.
LO = LO + 2.
ENDIF.
IF SY-TABIX = LN.
wa1-kunnr2 = wa-kunnr.
wa1-NAME12 = wa-name1.
wa1-LAND12 = wa-LAND1.
LN1 = LN - 1.
MODIFY IT1 FROM WA1 INDEX LN1 TRANSPORTING KUNNR2 NAME12 LAND12.
LN = LN + 2.
ENDIF.
ENDLOOP.
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What was the requirement of IDoc in your project? How it was working?
Select query optimisation
What is a projection view? : abap data dictionary
Describe the data classes?
How does the system handle roll areas for external program components?
how to capture the errors in bdc Call transaction method?
How many types of views are there ?
What is meant by hide area?
What is meant by slab? How is indian slab and us slab? : sap abap hr
How to upload more than 2GB file from External Source to SAP?
How to get that a secondary index is attached to a select query?
What is collective search help? : sap abap data dictionary
A field-groups statement or an insert statement reverses storage space and transfers values. State true or false. : abap modularization
What is sap luw or update transaction?
Which FM do you use to find out who is reporting to whom