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
How can we handle table control in bdc? : abap bdc
What are the different types of internal table?
Why do we use types statement in abap programming?
What are clustered tables?
What are the differences between table and structure in data dictionary?
What are the attributes of the data? : abap data dictionary
What is update task
Can we call reports and transactions from interactive reporting lists?
Did you create secondary index?
Control Break statements- At new...endat.
How to get that a secondary index is attached to a select query?
Explain the properties of selection screen?
Can a transparent table exist in the data dictionary but not in the database physically?
Difference between select option and ranges ?
What are the attributes of a field that can be activated or deactivated during runtime?