2008 Aug 05 1:18 PM
Hi all,
What is the alternative for MOVE-CORRESPONDING fields in version 6.0.
regards,
Ajay reddy
2008 Aug 05 1:23 PM
Hi,
Version 6.0 does support Move-corresponding.
Best regards,
Prashant
2008 Aug 05 1:20 PM
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
2008 Aug 05 1:23 PM
Hi,
Version 6.0 does support Move-corresponding.
Best regards,
Prashant
2008 Aug 05 1:23 PM
Hi,
use Move statement...
move : itab1-field1 to itab2-field1,
itab1-field2 to itab2-field2.
Regards,
Nagaraj
2008 Aug 05 1:35 PM
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.