rama


{ City } mumbai
< Country > india
* Profession * system analyst
User No # 66861
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 9
Users Marked my Answers as Wrong # 1
Questions / { rama }
Questions Answers Category Views Company eMail




Answers / { rama }

Question { IBM, 14355 }

which one is efficient in following command to copy data
from one itab1to another itab2 . both itab table has same
structure.
1. move itab1 to itab2
2.move corresponding field of itab1 to itab2
3. itab2[] = itab2[]
4.appends line of itab1 to itab2..


Answer

To move all entries from one internal table to another
which has the same structure use the following statement:
ITAB2[] = ITAB1[].

Is This Answer Correct ?    9 Yes 1 No