I have two internal tables itab1 and itab2 and I had move
the content of the itab1 to itab2 and then itab1 had to
deleted
Answer Posted / rajarao
Hi,
itab2[ ] = itab1[ ]
refresh itab1
alternatively:
append lines of itab1 into itab2.
pay attention that your internal tables must have the same
structure.
if diff structure (not in order)
loop at itab1.
move corresponding tab1 to itab2.
append itab2.
endloop.
refresh itab1.
| Is This Answer Correct ? | 19 Yes | 2 No |
Post New Answer View All Answers
How to write a code for multiple transactions? : abap bdc
In selection screen, I have three fields, plant material number and material group. If I input plant how do I get the material number and material group based on plantdynamically?
A field-groups statement or an insert statement reverses storage space and transfers values. State true or false. : abap modularization
How to handle errors in call transaction bdc method without using bdcmsgcoll internal table? : abap bdc
Difference between sy-tabix and sy-index? Where it is used? Can you check sy-subarc after perform?
Explain about Recording Function?
What is the lock object?
Can a transparent table exist in the data dictionary but not in the database physically?
How can an internal table with header line and one without header line bedistinguished when passed to a subroutine?
How we can give authorization on the fields of table control in a dialog-programming?
What are lock objects?
What are the buffering options in abap?
What is the sap abap?
How do you backup Sapscript layout sets? Can you download and upload? How?
Explain the difference between free and refresh?