‎2007 Oct 24 1:16 AM
Hi there,
how can we append one table contents to another internal table without using loop? is it possible?
pls advise. thank.
‎2007 Oct 24 1:22 AM
Hi,
If the both the internal table structures are same..Then use the following..
APPEND LINES OF ITAB1 TO ITAB2.
Thanks
Naren
‎2007 Oct 24 1:22 AM
Hi,
If the both the internal table structures are same..Then use the following..
APPEND LINES OF ITAB1 TO ITAB2.
Thanks
Naren
‎2007 Oct 24 9:37 AM
Can we comparing two table without using loop to increase performance?
pls advise, thank.
‎2007 Oct 24 11:05 AM
hi
you cant compare two table contents without looping into it.
if u want to tranfer the data use foll syntax
itab1[] = itab2[] .
or
move-corresponding itab1 to itab2.
sheetal
‎2007 Oct 24 1:57 AM
You can use below syntax if both table structure are same :
itab1[] = itab2[]. -> performance is good
or append lines of itab2 to itab1. -> performance is bad
Thanks
Seshu