<?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 Re: move and move-corresponding in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1613666#M274980</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;  MOVE just move the values without looking at the field names. Meaning it just the moves the number of characters from the source to the target structure OR variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; MOVE-CORRESPONDING looks for the corresponding field names in the target structure and move those values only..&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA: BEGIN OF source,&lt;/P&gt;&lt;P&gt;matnr type matnr,&lt;/P&gt;&lt;P&gt;end of source.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF target,&lt;/P&gt;&lt;P&gt;vbeln type vbeln,&lt;/P&gt;&lt;P&gt;matnr type matnr,&lt;/P&gt;&lt;P&gt;end of target.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;source-matnr = 'asdfasf'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING source to target.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: / 'vbeln- ', target-vbeln.&lt;/P&gt;&lt;P&gt;write: / 'matnr- ', target-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear: target.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;skip 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE source to target.&lt;/P&gt;&lt;P&gt;write: / 'vbeln- ', target-vbeln.&lt;/P&gt;&lt;P&gt;write: / 'matnr- ', target-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;If you see the second output the value in matnr is moved to&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;vbeln in target.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Sep 2006 18:11:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-14T18:11:30Z</dc:date>
    <item>
      <title>move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1613665#M274979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can any body please explain about move and move-correspoding...thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Sep 2006 18:07:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1613665#M274979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-14T18:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1613666#M274980</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;  MOVE just move the values without looking at the field names. Meaning it just the moves the number of characters from the source to the target structure OR variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; MOVE-CORRESPONDING looks for the corresponding field names in the target structure and move those values only..&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA: BEGIN OF source,&lt;/P&gt;&lt;P&gt;matnr type matnr,&lt;/P&gt;&lt;P&gt;end of source.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF target,&lt;/P&gt;&lt;P&gt;vbeln type vbeln,&lt;/P&gt;&lt;P&gt;matnr type matnr,&lt;/P&gt;&lt;P&gt;end of target.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;source-matnr = 'asdfasf'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING source to target.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: / 'vbeln- ', target-vbeln.&lt;/P&gt;&lt;P&gt;write: / 'matnr- ', target-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear: target.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;skip 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE source to target.&lt;/P&gt;&lt;P&gt;write: / 'vbeln- ', target-vbeln.&lt;/P&gt;&lt;P&gt;write: / 'matnr- ', target-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;If you see the second output the value in matnr is moved to&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;vbeln in target.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Sep 2006 18:11:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1613666#M274980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-14T18:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1613667#M274981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MOVE is used to move data from one field to another field with similar datatype.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING is used to move data between structures. It searches for all names of subfields that occur both in struc1 and struc2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Sep 2006 18:13:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1613667#M274981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-14T18:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1613668#M274982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vijaya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mOVE - &amp;gt; when we use Move,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE source to TARGET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here source and target shuld be of same structre and order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE COressponding - &amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE CORRESSPONDING source TO target.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the source and target shuld be same structure but can be in different order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the process will happend correctly like MOVE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT PERFORMANCE&lt;/P&gt;&lt;P&gt;***********************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEVER USE MOVE CORRESSPONDING.&lt;/P&gt;&lt;P&gt;IT WILL TAKE MORE TIME.&lt;/P&gt;&lt;P&gt;SO ALWYS USE 'MOVE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RGDS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if hlped mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Sep 2006 18:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1613668#M274982</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-09-14T18:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1613669#M274983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks...answer is pretty clear&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Sep 2006 18:24:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-and-move-corresponding/m-p/1613669#M274983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-14T18:24:03Z</dc:date>
    </item>
  </channel>
</rss>

