if u have two internal table such as itab1 and itab2.in
itab1 has four fields such as f1,f2,f3,f4 and in itab2 has
two fields such as f1,f2.then how can u copy data from
first internal table to second internal table.
Answer Posted / abhishek buckal
REPORT ZAB_INTERNAL.
TABLES: mara.
TYPES: BEGIN OF str,
f3 TYPE pstat_d,
f4 TYPE mbrsh,
f1 TYPE matnr,
f2 TYPE ernam,
END OF str.
DATA:ITab TYPE TABLE OF STR.
DATA: wa LIKE LINE OF itab.
TYPES: BEGIN OF str1,
f1 TYPE matnr,
f2 TYPE ernam,
END OF str1.
DATA: ITab1 TYPE TABLE OF STR1.
DATA: wa1 LIKE LINE OF itab1.
select pstat mbrsh matnr ernam FROM mara into TABLE itab.
LOOP at itab into wa.
MOVE-CORRESPONDING wa to wa1.
APPEND wa1 to itab1.
ENDLOOP.
LOOP at itab1 into wa1.
WRITE: /01 wa1.
ENDLOOP.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is a size category? : abap data dictionary
What is a bsp application? : sap abap hr
What are table clusters?
Define alv programming in abap?
Workbench request are client dependent or client independent
Explain the table, which contain the details of all the name of the programs and forms?
could anyone tell me what r real time questions been asked in interviews?i am in urgent need..thanks in advance
What is synchronous update?
What are indexes? : abap hr
How to upload more than 2GB file from External Source to SAP?
Difference between sy-tabix and sy-index? Where it is used? Can you check sy-subrc after perform?
What are the function modules used in a sap script driver program?
Suppose the client wants me the vacancy to be displayed on a website as well as ess. How should I do it? : sap abap hr
What are the differences between a database index and a match code?
What is the meaning of client independent?