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

move-corresponding fields in version 6.0

Former Member
0 Likes
622

Hi all,

What is the alternative for MOVE-CORRESPONDING fields in version 6.0.

regards,

Ajay reddy

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
535

Hi,

Version 6.0 does support Move-corresponding.

Best regards,

Prashant

4 REPLIES 4
Read only

Former Member
0 Likes
535

If move corresponding is not working then the other option moving fields individually.

move tab1-f1 to tab2-f1,

tab1-f2 to tab2-f2,

.

.

Continue.

Thanks and Regards

Read only

Former Member
0 Likes
536

Hi,

Version 6.0 does support Move-corresponding.

Best regards,

Prashant

Read only

former_member404244
Active Contributor
0 Likes
535

Hi,

use Move statement...

move : itab1-field1 to itab2-field1,

itab1-field2 to itab2-field2.

Regards,

Nagaraj

Read only

naveen_inuganti2
Active Contributor
0 Likes
535

Hi....

That statement will works....

>SELECT * FROM SFLIGHT WHERE CARRID = SFLIGHT-CARRID.

>MOVE-CORRESPONDING SFLIGHT TO ITAB.

>APPEND ITAB.

>ENDSELECT.

Do like this....

Thanks,

Naveen Inuganti.