<?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 Vs ASSIGN Statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602534#M1758673</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please explain me how assign is better than move-corresponding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as i know we should use ASSIGN statement only when we are trying to modify the data, but here I am just moving the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Aug 2013 06:21:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-08-08T06:21:29Z</dc:date>
    <item>
      <title>MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602528#M1758667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a huge dynamic structure which will have 300 fields data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I need to fetch 10 fields data from it I am doing as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;300 fields structure is &amp;lt;lwa_hugestructure&amp;gt; - field1 to field300&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10 fields structure is ls_required_data. - field3, 6, 9, 23, 56, 78, 89, 123, 145, 176.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I have to Prefer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE_CORREOSPONDING &amp;lt;lwa_hugestructure&amp;gt; TO ls_required data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT 'FIELD3' OF STRUCTURE &amp;lt;lwa_hugestructure&amp;gt; TO &amp;lt;lv_value&amp;gt;.&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ls_required_data-field3 = &amp;lt;lv_value&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT 'FIELD6' OF STRUCTURE &amp;lt;lwa_hugestructure&amp;gt; TO &amp;lt;lv_value&amp;gt;.&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ls_required_data-field6 = &amp;lt;lv_value&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT 'FIELD176' OF STRUCTURE &amp;lt;lwa_hugestructure&amp;gt; TO &amp;lt;lv_value&amp;gt;.&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ls_required_data-field176 = &amp;lt;lv_value&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 05:41:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602528#M1758667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-08T05:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602529#M1758668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 05:50:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602529#M1758668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-08T05:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602530#M1758669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Sravan for your quick reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My point in raising this question is to know which statement I should use to copy the data from huge dynamic structure to small structure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 05:55:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602530#M1758669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-08T05:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602531#M1758670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is better to go with Assign Component rather than MOVE-CORRESPONDING .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you need only 10 fields to be assigned to target fields out of 300 fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 06:01:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602531#M1758670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-08T06:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602532#M1758671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assign statement will have better performance compared to move corresponding...... My suggestion is to go for assign........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 06:06:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602532#M1758671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-08T06:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602533#M1758672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To add to Shravan's explanation,Assign is a better option than Move Corresponding &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 06:15:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602533#M1758672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-08T06:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602534#M1758673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please explain me how assign is better than move-corresponding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as i know we should use ASSIGN statement only when we are trying to modify the data, but here I am just moving the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 06:21:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602534#M1758673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-08T06:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602535#M1758674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Strictly speaking, the ASSIGN method would be better in terms of performance. BUT, if I were in a similar situation as you, I would have gone ahead with MOVE-CORRESPONDING because the difference in performance, in most cases, should be imperceptible to humans and maintenance of code would be much simpler. If you write as many ASSIGN statements as the number of fields, it becomes very tedious, especially when you have hundreds of fields as in your case. Perhaps you can try with MOVE-CORRESPONDING first and measure the time taken using tools like SAT/SE30.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Akshat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 06:23:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602535#M1758674</guid>
      <dc:creator>kakshat</dc:creator>
      <dc:date>2013-08-08T06:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602536#M1758675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I entirely agree. I handle large dynamic structures all the time, in processes involving huge data sets. I first define a structure that contains only the fields I'm interested in. I then use move-corresponding to get the data from the dynamic structure to the defined structure. I used to use the field-symbol approach, but for ease of programming and maintenance, I've switched to Move-corresponding, &lt;SPAN style="color: #ff0000; font-size: 12pt;"&gt;&lt;STRONG&gt;and I've found NO significant difference in performance. &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, sometimes field symbols are slower.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example.&lt;/P&gt;&lt;P&gt;LOOP AT tab ASSIGNING &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp; ASSIGN field1 OF structure &amp;lt;fs&amp;gt; TO &amp;lt;field&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;ENDLOOP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is &lt;STRONG&gt;slower &lt;/STRONG&gt;than&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT tab ASSIGNING &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp; MOVE-CORRESPONDING &amp;lt;fs&amp;gt; TO mystruc.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; MOVE-CORRESPONDING mystruc TO &amp;lt;fs&amp;gt;. " For any fields whose values have changed&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(You can get round this by defining the field-symbol for the work area, and using LOOP AT tab INTO &amp;lt;fs&amp;gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generally, MOVE-CORRESPONDING is better than field symbols as it is less prone to error, makes for code that is easier to maintain, and it makes debugging easier (it's difficult to set watch points on field symbols).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Field-symbols only make a &lt;SPAN style="font-size: 14pt;"&gt;significant&lt;/SPAN&gt; performance improvement in certain specific cases&lt;/STRONG&gt;&lt;/SPAN&gt;. E.g. updating internal table contents.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 06:43:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602536#M1758675</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2013-08-08T06:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602537#M1758676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Matthew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was having a discussion with my colleague about this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Actual discussion was::&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose if I want to move data from my huge dynamic strcuture &amp;lt;lwa_hugestrucuture&amp;gt; to ls_required_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I mean how the data is moved from source to target structure ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First field field1 of source structure will be checked if it exists in the target structure and if it exists data will be moved and&amp;nbsp; field2 will be checked in the same way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first field field3 of target structure will be checked in the source structure if it exists data will be fetched and next field6 will be checked in the same way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 07:02:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602537#M1758676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-08T07:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602538#M1758677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore,&lt;/P&gt;&lt;P&gt;ASSIGN COMPONENT always check the field in the source structure. In the target we generally have a field where we store the value, and then we pass that value to the structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In MOVE-CORRESPONDING both the structures are checked, for the fields. If you have to transfer massive data, then move-corresponding is not the better option. You should use ASSIGN COMPONENT, but again if u use it its not easy to debug it everytime.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 07:20:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602538#M1758677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-08T07:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602539#M1758678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Only the people who've written the ABAP language can tell you how the command works. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you really want to know the fast way - write a test program. Then you can operate from &lt;STRONG&gt;fact&lt;/STRONG&gt; &lt;SPAN style="font-size: 10pt;"&gt;rather than opinion or theory.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if field-symbols is quicker, performance is not the main priority for programming. Simple programming is to be vastly preferred. Only use complicated programming if:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) It's been proven that the complicated programming is quicker &lt;STRONG&gt;and&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;b) It is critical that the best possible performance is squeezed from the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To do otherwise is &lt;STRONG&gt;bad programming. &lt;/STRONG&gt;If you use the field-symbol alternative to move-corresponding, then you are writing code that it more complicated than it needs to be. More complicated code is harder to maintain, and takes longer to maintain, and is therefore &lt;STRONG&gt;more expensive&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Testing with 100'000 records of a structure containing 173 fields, into a structure containing 15 fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;1) Comparing move-corresponding with&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;ASSIGN COMPONENT field OF STRUCTURE &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;....&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;LOOP AT itab INTO &amp;lt;FS&amp;gt;:&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;Field-symbols take 66% of the time of move-corresponding. Extrapolating to 10'000'000 records, that would mean using FS would save you 3 seconds). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;2) Comparing move-corresponding with&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;LOOP AT itab ASSIGNING &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt; ASSIGN COMPONENT field OF STRUCTURE &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;...&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;Field-symbols are &lt;STRONG&gt;ten time slower&lt;/STRONG&gt; than move-corresponding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On this basis, if you're handling large quantities of data, it's still not worth using field-symbols over move-corresponding, unless performance is absolutely critical. If you're only handling a few records, then field-symbols are &lt;EM&gt;definitely &lt;/EM&gt;not worth using.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 08:15:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602539#M1758678</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2013-08-08T08:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602540#M1758679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Matthew.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 08:54:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602540#M1758679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-08T08:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602541#M1758680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also checked the runtimes if the source structure has more fields than the destination and when the source structure has fewer fields than the destination. (Again 173/15 and 15/173).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could find no significant difference in the runtime. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 08:58:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602541#M1758680</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2013-08-08T08:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602542#M1758681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Inaccurate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 08:59:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602542#M1758681</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2013-08-08T08:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602543#M1758682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Inaccurate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 08:59:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602543#M1758682</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2013-08-08T08:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602544#M1758683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at times move-corresponding just makes life so simple for folks like me who have to so many times clean garbage code written by some brick heads but in my current company what makes me laugh is that some co workers behave as if thsi keyword causes plague these so called reviewers just see what they have been forced feed... there are so many cases i have seen where many ABAP keywords are treated with big bias.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my case on any given day field symbol and the pointer based memory approach that idt does will be a boon with data intensive modify operations but one have to judge the situation in most assign a value case move-corresponding is perfect way and there;s no runtime impact&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 11:14:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602544#M1758683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-08-08T11:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602545#M1758684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a question: it worths the effort to worry about it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I mean: when I code, I have two goals in mind (money a part):&lt;/P&gt;&lt;P&gt;- the program must do what it is expected to do&lt;/P&gt;&lt;P&gt;- the program must be easily maintenable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only when the program appears to have a very long execution time things like syntax performance will be took under consideration. And usually, things like your question will not make the difference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Be worried about your program maintenance, the easy it is to be read and if the whole logical processes (LOOPs, READs and so) are fine. If your program takes 3 minutes to work, you don't need to care about use complex and hard-to-maintain code to lower it to 2 minutes 56 seconds...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(just my though)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 12:35:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602545#M1758684</guid>
      <dc:creator>VXLozano</dc:creator>
      <dc:date>2013-08-08T12:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602546#M1758685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's one of the myths of the ABAP world - same as "For all entries is better than Inner join", when in the vast majority of cases, it's the other way around. And, of course, inner join produces more readable code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 13:18:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602546#M1758685</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2013-08-08T13:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: MOVE CORRESPONDING Vs ASSIGN Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602547#M1758686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The old SDN had some nice blog posts about that. I'm sure they still will be around, somewhere. I ever though these things happen because old ABAPers were old-fashioned people used to work versus some hardware limits we don't have anymore. But old costumes are still here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How many "new wave" programmers do you know who still use the bloody WITH HEADER LINE clause?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 13:28:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-corresponding-vs-assign-statement/m-p/9602547#M1758686</guid>
      <dc:creator>VXLozano</dc:creator>
      <dc:date>2013-08-08T13:28:47Z</dc:date>
    </item>
  </channel>
</rss>

