InterviewSolution
Saved Bookmarks
| 1. |
What Is The Command To Be Used To Transfer The Data From One Internal Table To Another Internal? |
|
Answer» MOVE itab1 to itab2 We can use APPEND for copying data from ONE ITAB to ANOTHER ITAB by keeping in a loop. But it is not EFFICIENT. Instead we can use as follows: ITAB1[]=ITAB2[]. Move itab1 to itab2 We can use APPEND for copying data from one ITAB to another ITAB by keeping in a loop. But it is not efficient. Instead we can use as follows: ITAB1[]=ITAB2[]. |
|