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
What is the diffreence between bdc_close_group and bdc_close_dataset? : abap bdc
how to Create reports in SD module such as sales order report, which covers all organization levels, delivery status, invoice status, shipping details and partner function details. The data will be extracted from VBAP, VBPA, VBAK, VBUP, VBFA, KNA1, LIPS, VBRP, MARA, VBEP and KONV tables. plz mention the detail coding Tahnks, Rahul
What is the table buffer? Which type of tables used this buffer?
How can we access the correction and transport system?
10) How to get Item Header in Sales Order?
Explain about the tables exists in a data dictionary and what are they? : abap data dictionary
What is the difference between bdc_open_group and bdc_open_dataset. : abap bdc
How do you get the number of lines in an internal table?
What kind of financial periods exist in sap? What is the relavent table for that?
How many ways can a sap system be accessed?
How to copy table across clients?
What are the function modules that are generated when you activate a lockobject? : sap abap data dictionary
What are the different types of parameters? How can you distinguish between different kinds of parameters?
What is the difference between collect and append statements?
how to create view in bdc..??