<?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 vs move corresponding in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-vs-move-corresponding/m-p/3014225#M712352</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the general performance recommendation is the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Never use move-corresponding with buffered tables, the overhead can be similar as the buffered access itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For database selects, the select itself is more expensive than the move corresponding. The decision come from the decision whether you want to use a fieldlist or a SELECT *. Fieldlists are recommended for very width tables, if the fieldlist reduces the width by a factor 2. Fieldlist must be used if your INTO structure is different from the table structure. In these 2 cases, you should use MOVE-CORRESPONDING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Nov 2007 12:56:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-12T12:56:05Z</dc:date>
    <item>
      <title>move vs move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-vs-move-corresponding/m-p/3014221#M712348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;which is preferrable between move and move-corresponding  based on performance issues?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 12:14:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-vs-move-corresponding/m-p/3014221#M712348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-11T12:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: move vs move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-vs-move-corresponding/m-p/3014222#M712349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move statement is best than move-corresponding statement .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move-corresponding statement takes little bit performance but it is not countable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 14:26:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-vs-move-corresponding/m-p/3014222#M712349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-11T14:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: move vs move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-vs-move-corresponding/m-p/3014223#M712350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have a scenario in which you can use both then 'move' is better than 'move-corresponding'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move-corresponding will be used only where you can't use a move statement as the fields might not be in the required sequence.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 16:16:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-vs-move-corresponding/m-p/3014223#M712350</guid>
      <dc:creator>former_member195698</dc:creator>
      <dc:date>2007-11-11T16:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: move vs move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-vs-move-corresponding/m-p/3014224#M712351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From a performance standpoint, MOVE is better than MOVE-CORRESPONDING, but the improvement is so slight that I generally use MOVE-CORRESPONDING. You also have to take into account programming efficiency. Programming a couple of hundred MOVE statements may take more time than is saved in the life of the program using the MOVE-CORRESPONDING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 16:19:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-vs-move-corresponding/m-p/3014224#M712351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-11T16:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: move vs move corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-vs-move-corresponding/m-p/3014225#M712352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the general performance recommendation is the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Never use move-corresponding with buffered tables, the overhead can be similar as the buffered access itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For database selects, the select itself is more expensive than the move corresponding. The decision come from the decision whether you want to use a fieldlist or a SELECT *. Fieldlists are recommended for very width tables, if the fieldlist reduces the width by a factor 2. Fieldlist must be used if your INTO structure is different from the table structure. In these 2 cases, you should use MOVE-CORRESPONDING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2007 12:56:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-vs-move-corresponding/m-p/3014225#M712352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-12T12:56:05Z</dc:date>
    </item>
  </channel>
</rss>

