Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

LOOP AT TABLE

Former Member
0 Likes
591

Hi there,

how can we append one table contents to another internal table without using loop? is it possible?

pls advise. thank.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
576

Hi,

If the both the internal table structures are same..Then use the following..

APPEND LINES OF ITAB1 TO ITAB2.

Thanks

Naren

4 REPLIES 4
Read only

Former Member
0 Likes
577

Hi,

If the both the internal table structures are same..Then use the following..

APPEND LINES OF ITAB1 TO ITAB2.

Thanks

Naren

Read only

0 Likes
576

Can we comparing two table without using loop to increase performance?

pls advise, thank.

Read only

0 Likes
576

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

Read only

Former Member
0 Likes
576

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