Assigning components for ERP 4.6c
Hi,

I have a bit of a problem. Here's the deal:
MOVE Corresponding does not work in ERP 4.6c for field type ANY .

data st_qmvrms type mara.
Field-Symbols:<fs_type1> type any,
              <fs_type2> type any.
move-corresponding is_data to st_qmvrms.
here is_data is declared as type ANY.

This statement works in ERP 2005 but not in ERP 4.6C. Can you please tell me how I can run this or what is the alternative for doing this?

    Requires Free Membership to View

    When you register, you will start receiving targeted emails from my award-winning team of editorial writers. Our goal is to keep you informed on the hottest topics and biggest challenges faced by SAP professionals today.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchSAP.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchSAP.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

In 4.6c, you'll need to assign the components of the structure separately, using ASSIGN COMPONENT x OF STRUCTURE <struc1> TO <fs1>. ASSIGN COMPONENT x OF STRUCTURE <struc2> TO <fs2>. You can then use <fs1> = <fs2>

This was first published in November 2006