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 are the steps to be followed to set lockobjects? : sap abap data dictionary
Explain what are the problems in processing batch input sessions?
Explain the difference between float and packed data type?
how to capture the errors in bdc Call transaction method?
Normally how many and what files get created when a transaction program is written?
What is tcode se16?
Why are insert and append statement used in sap abap?
Rp_provide_from_last contains how many parameters ? : abap hr
How can you distinguish between different kinds of parameters?
What is a predefined type in abap?
What are the different types of the variable in the sap abap?
What are the parameter types for a method?
What are client dependent objects in abap/sap?
Mention the various databases integrities?
What are the two statements which are required in an abap program to output an icon using a write statement?