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
What is retro active accounting
What is the differences between structure and table in data dictionary in abap?
What data is contained in data dictionary? : abap data dictionary
Difference between Read and Get cursor?
What are the events driven batch jobs?
What is the use of f4if_shlp_exit_example function module ? : sap abap data dictionary
The commands through which an abap/4 module can “branch to “ or “call” the next screen are?
Explain pai and pbo.
What is asynchronous update?
What are the different types of parameters? : abap modularization
How is collect statement different from append?
Give few names of pooled tables in sap ?
Which infotype records can not be deleted ? : abap hr
How to transfer data into line items using batch input session method? : abap bdc
Did you use buffering?