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 / sivaramakrishna. s
we can also use this process as below.
loop at itab1 into wa1
append wa1_f1 to wa1_f1.
append wa2_f2 to wa2_f2.
append wa2 to itab2.
end loop.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Which transaction code can I used to analyze the performance of ABAP program.?
What is the use of a pretty printer?
Which function modules can be used to transfer the data using bdc programming? : abap bdc
Explain the call transaction method? : abap bdc
Explain the Importance of pa20? : abap hr
Explain what is the step-by-step process to create a table in data dictionary?
Why bapi need then bdc ? : abap bdc
Explain what is the difference between primary key and unique key?
Which transaction code can I use to analyze the performance of abap program?
1 . how do u design technical documentation in abap ? 2 . what u currently devloped in sap abap ?
where are the passwords for ITS stores?
SM35 transaction, How to automate BDC ?
Write special commands of list?
What is lock mechanism? How do we create lock objects in abap?
WHAT ARE THE INPUT PARAMETERS TO BE PASSED FOR THE BAPIS 'BAPI_CUSTMATINFO_GETDETAILM' AND 'BAPI_CUSTMATINFO_GETLIST'