Application Development 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: 

move-corresponding fields in version 6.0

Former Member
0 Kudos
161

Hi all,

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

regards,

Ajay reddy

1 ACCEPTED SOLUTION

former_member223537
Active Contributor
0 Kudos
74

Hi,

Version 6.0 does support Move-corresponding.

Best regards,

Prashant

4 REPLIES 4

Former Member
0 Kudos
74

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

former_member223537
Active Contributor
0 Kudos
75

Hi,

Version 6.0 does support Move-corresponding.

Best regards,

Prashant

former_member404244
Active Contributor
0 Kudos
74

Hi,

use Move statement...

move : itab1-field1 to itab2-field1,

itab1-field2 to itab2-field2.

Regards,

Nagaraj

naveen_inuganti2
Active Contributor
0 Kudos
74

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.