<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic MOVE CORRESPONDING in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding/m-p/1703244#M308163</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA : is_data type mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS:&amp;lt;fs_data&amp;gt; type ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE CORRESPONDING &amp;lt;fs_data&amp;gt; to is_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this statement works in ERP 2005 but not in ERP 4.6C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one tell me what is the smilar statement for this in ERP 4.6C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Nov 2006 06:10:41 GMT</pubDate>
    <dc:creator>lokesh_malik</dc:creator>
    <dc:date>2006-11-02T06:10:41Z</dc:date>
    <item>
      <title>MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding/m-p/1703244#M308163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA : is_data type mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS:&amp;lt;fs_data&amp;gt; type ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE CORRESPONDING &amp;lt;fs_data&amp;gt; to is_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this statement works in ERP 2005 but not in ERP 4.6C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one tell me what is the smilar statement for this in ERP 4.6C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Nov 2006 06:10:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding/m-p/1703244#M308163</guid>
      <dc:creator>lokesh_malik</dc:creator>
      <dc:date>2006-11-02T06:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding/m-p/1703245#M308164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lokesh,&lt;/P&gt;&lt;P&gt;    can you be a bit elaborative with the problem.&lt;/P&gt;&lt;P&gt;what i can see is you defined a field symbol of type any, so you will need to assign this field symbol to a field of mara and then you can use the direct assignment.&lt;/P&gt;&lt;P&gt;Eg: &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : is_data type mara.

FIELD-SYMBOLS:&amp;lt;fs_data&amp;gt; type ANY.

assign is_data-matnr to &amp;lt;fs_data&amp;gt;.

&amp;lt;fs_data&amp;gt; = 500.

move &amp;lt;fs_data&amp;gt; to is_data.

write is_data-matnr.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if you are using the field symbol as a structure then the following example works&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : is_data type mara.

FIELD-SYMBOLS:&amp;lt;fs_data&amp;gt; structure mara default is_data.

&amp;lt;fs_data&amp;gt;-mandt = 800.
&amp;lt;fs_data&amp;gt;-matnr = 500.

move  &amp;lt;fs_data&amp;gt; to is_data.

write: is_data-matnr,
       is_data-mandt.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kinshuk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Nov 2006 08:33:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding/m-p/1703245#M308164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-02T08:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding/m-p/1703246#M308165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;do.
 assign component sy-index of structure &amp;lt;fs_data&amp;gt; to &amp;lt;f1&amp;gt;.
 assign component sy-index of structure  is_data  to &amp;lt;f2&amp;gt;.

  if sy-subrc = 0. move &amp;lt;f1&amp;gt; to &amp;lt;f2&amp;gt;. endif.
...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Nov 2006 09:30:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding/m-p/1703246#M308165</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2006-11-02T09:30:56Z</dc:date>
    </item>
  </channel>
</rss>

