<?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 Corresponding and move statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659849#M1944266</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But what if you have 20 fields. Then that would be 20 times a move statement. Wouldn't move corresponding be faster (only one statement to do by abap).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know the answer, just a question that pops up reading this discussion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way I almost always use move-corresponding and never had any performance issues . If I have a perfomance issue it is because of other statements. Maybe I am just lucky ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Apr 2016 11:03:42 GMT</pubDate>
    <dc:creator>PeterJonker</dc:creator>
    <dc:date>2016-04-14T11:03:42Z</dc:date>
    <item>
      <title>Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659842#M1944259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per i have analysed,&amp;nbsp; move corresponding is working faster than move statement but in sap forum it is mentioned move statement is faster, so please any one help on this performance wise, as am using move corresponding inside the loop of 600000 records.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 09:13:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659842#M1944259</guid>
      <dc:creator>koushikking</dc:creator>
      <dc:date>2016-04-14T09:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659843#M1944260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What's your question in detail? If MOVE is faster or MOVE-CORRESPONDING?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 09:17:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659843#M1944260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-14T09:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659844#M1944261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move corresponding is faster&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 09:28:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659844#M1944261</guid>
      <dc:creator>koushikking</dc:creator>
      <dc:date>2016-04-14T09:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659845#M1944262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your case, I guess. In general MOVE should be faster because it does not need to find the corresponding fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 09:39:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659845#M1944262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-14T09:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659846#M1944263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Koushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;MOVE: means from move one field to other , and the field names may be different&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;MOVE-CORRESPONDING means both the field names in both sides are to be same.then only we use this.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MOve-Corresponding is more convinient than moving fileds individually. but this command takes more CPU time this result in poor performance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;E.Ananthachari.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 09:42:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659846#M1944263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-14T09:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659847#M1944264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't use Move-corresponding inside the loop, move each fields separately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As above mentioned move-corresponding checks field name between two structures to move contents to respective fields. This hampers performance. Using Move will directly transfers the value without bothering about field names.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 10:13:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659847#M1944264</guid>
      <dc:creator>pranay570708</dc:creator>
      <dc:date>2016-04-14T10:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659848#M1944265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;STRONG&gt;As per i have analysed ??&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Could you please tell us how you analysed the statements move and move-corresponding ?&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;STRONG&gt;Refer below links&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;STRONG&gt;&lt;A href="https://help.sap.com/abapdocu_70/en/ABAPMOVE-CORRESPONDING.htm" title="https://help.sap.com/abapdocu_70/en/ABAPMOVE-CORRESPONDING.htm"&gt;https://help.sap.com/abapdocu_70/en/ABAPMOVE-CORRESPONDING.htm&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;STRONG&gt;&lt;A __default_attr="546061" __jive_macro_name="thread" class="jive_macro_thread jive_macro" data-orig-content="difference between move-corresponding and =" href="https://community.sap.com/" modifiedtitle="true" title="difference between move-corresponding and ="&gt;&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;STRONG&gt;&lt;A __default_attr="544322" __jive_macro_name="thread" class="jive_macro_thread jive_macro" data-orig-content="difference between move and move corresponding...with simple easy example" href="https://community.sap.com/"&gt;&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 10:24:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659848#M1944265</guid>
      <dc:creator>prad_k</dc:creator>
      <dc:date>2016-04-14T10:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659849#M1944266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But what if you have 20 fields. Then that would be 20 times a move statement. Wouldn't move corresponding be faster (only one statement to do by abap).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know the answer, just a question that pops up reading this discussion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way I almost always use move-corresponding and never had any performance issues . If I have a perfomance issue it is because of other statements. Maybe I am just lucky ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 11:03:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659849#M1944266</guid>
      <dc:creator>PeterJonker</dc:creator>
      <dc:date>2016-04-14T11:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659850#M1944267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, I can imagine that 20 single moves are not as good as one move corresponding, because I guess the kernal can execute the single statement quicker than the 20 statements (depending on the huge of the structure). But if there is one move statement against one move corresponding statement, the first should win the race in general.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But to improve the performance the first question should be: Can I avoid the moving (copying)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 11:24:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659850#M1944267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-14T11:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659851#M1944268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when you need to move maximum fields from one structure to another, then you can go for Move-Corresponding. But only for couple of fields, Move is preferable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 11:35:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659851#M1944268</guid>
      <dc:creator>pranay570708</dc:creator>
      <dc:date>2016-04-14T11:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659852#M1944269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move corresponding may be faster but this is risky. This can be used if you are sure that every field name and corresponding data type is correct. Move for me is the safest way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 11:56:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659852#M1944269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-14T11:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659853#M1944270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;But folks... The &lt;STRONG&gt;MOVE&lt;/STRONG&gt; is considered obsolete (on SAP_ABA 7.4), instead it should use the equal sign. Of course the user who opened the issue not said component version SAP_ABA he is using, yet I think much better to use the = sign of what to do the MOVE command.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN lang="en"&gt;About &lt;STRONG&gt;MOVE-CORRESPONDING&lt;/STRONG&gt; (still talking about 7.4), we have other ways of doing, and not think it's bad performance.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 12:06:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659853#M1944270</guid>
      <dc:creator>raphael_almeida</dc:creator>
      <dc:date>2016-04-14T12:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659854#M1944271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have used move-corresponding inside the loop and work area contains 16 fields and structure of both work area is same.... it takes less time compare to individual 16 move statements.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 12:55:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659854#M1944271</guid>
      <dc:creator>koushikking</dc:creator>
      <dc:date>2016-04-15T12:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659855#M1944272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why do you use 16 individual moves, if the structure is the same and you can do it with one move? So, if you want a real comparison between MOVE (or &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt; and MOVE-CORRESPONDING use in both cases one statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 13:01:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659855#M1944272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-15T13:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659856#M1944273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Both are pretty efficient memory operations, so I wouldn't worry about performance. If that's your only concern, you're a mighty good troop of ABAPers. &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/98/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, from a maintenance perspective I prefer move-corresponding. You can add a field to the structure or table and it is automatically transported in memory (if you design your code well).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wolfgang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 14:30:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659856#M1944273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-15T14:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659857#M1944274</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 corresponding is better when you had more fields inside the loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 15:03:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659857#M1944274</guid>
      <dc:creator>jay_kumar8</dc:creator>
      <dc:date>2016-04-15T15:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659858#M1944275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm a little surprised that this is still being asked. Many years ago, we were taught not to use MOVE-CORRESPONDING because it was less efficient for the kernel to analyze and perform. In the intervening time, hardware became much quicker but programming costs increased, so MOVE-CORRESPONDING became much more widely accepted. I don't know if newer releases handle this statement more efficiently or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 15:57:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659858#M1944275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-04-15T15:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659859#M1944276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;Pranay Patel wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;when you need to move maximum fields from one structure to another, then you can go for Move-Corresponding. But only for couple of fields, Move is preferable.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Where exactly do you get this information from? Can you please enlighten us with the source?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 16:17:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659859#M1944276</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2016-04-15T16:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659860#M1944277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The internals may well be more efficient with all kinds of optimisation. For example, perhaps the interpreter is smart enough to buffer the mapping so it's done only once between two object structures, and the actual moves are done in a single operation, then move-corresponding now may be faster than a bunch of moves.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the OP has run his tests several times and got the same result that move-correspdoning is faster than move alone, then that's what he's got.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Certainly not something I'd worry about.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Apr 2016 05:33:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659860#M1944277</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2016-04-16T05:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Move Corresponding and move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659861#M1944278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is safer, but there's a trade-off perhaps of readability. However, in 7.4 onwards you can have the best of both worlds using CORRESPONDING operator with MAPPING.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Apr 2016 05:34:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-and-move-statement/m-p/11659861#M1944278</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2016-04-16T05:34:39Z</dc:date>
    </item>
  </channel>
</rss>

