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
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / madhu
If u delete the itab1, the contents of itab1 will not
effect the itab2.
itab2 will remain same as it before.
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / sindhu
Data : itab1 type table of mara,
itab2 type table of mara.
clear : itab1.
itab2[] = itab1[].
delete itab1.
Is This Answer Correct ? | 0 Yes | 0 No |
What is a drill down report?
What are standard layouts sets in the sap script?
what are version management functions?
in start of selection if we perform validation ,what happens?
2 Answers Bristle Cone, Cap Gemini, HP, Satyam, Wipro,
How do you find out who has transported a transport request?
what is the flag?
In order to upload purchase order details, how you handle multiple values for a single field?
sap modifications and enhancements are stored in which table?
WHAT ARE THE INPUT PARAMETERS TO BE PASSED FOR THE BAPIS 'BAPI_CUSTMATINFO_GETDETAILM' AND 'BAPI_CUSTMATINFO_GETLIST'
there is size categery(0,1,2,3)if i need more space after giving the size 0.what i have to do now?
what are use of ok_code in bdc
What does an EXEC SQL stmt do in ABAP?