<?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: regarding move and move-corresponding in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611094#M1086521</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;if ur target internal table has same structure as the source internal table u can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;source&amp;gt;.&lt;/P&gt;&lt;P&gt;move-corresponding &amp;lt;source&amp;gt; to &amp;lt;target&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append target.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if structure is different or in case if u wish to only send some fields that needs to be displayed in the report then use just move.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;source&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move &amp;lt;source&amp;gt;-&amp;lt;fieldname&amp;gt; to &amp;lt;target&amp;gt;-&amp;lt;fieldname&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append &amp;lt;target&amp;gt;.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Oct 2008 05:51:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-14T05:51:09Z</dc:date>
    <item>
      <title>regarding move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611092#M1086519</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;Can anybody tell me about move and move-corresponding functionality ie here i had a confussion about them is in which case &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------" /&gt;&lt;P&gt;Attempt should be made to move entire internal table headers in a single shot, rather than moving the fields one by one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whether it is in case of move or move-corresponding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please reply it will help me a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 05:46:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611092#M1086519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T05:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: regarding move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611093#M1086520</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;When you use MOVE it will move the contents of one structure to another structure in the same order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when you say MOVE-CORRESPONDING, it will transfer values to the same fields from one structure to another even though they are not in the same order.&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;Pramod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 05:48:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611093#M1086520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T05:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: regarding move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611094#M1086521</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;if ur target internal table has same structure as the source internal table u can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;source&amp;gt;.&lt;/P&gt;&lt;P&gt;move-corresponding &amp;lt;source&amp;gt; to &amp;lt;target&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append target.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if structure is different or in case if u wish to only send some fields that needs to be displayed in the report then use just move.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;source&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move &amp;lt;source&amp;gt;-&amp;lt;fieldname&amp;gt; to &amp;lt;target&amp;gt;-&amp;lt;fieldname&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append &amp;lt;target&amp;gt;.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 05:51:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611094#M1086521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T05:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: regarding move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611095#M1086522</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; when you say move, the values are moved form same row-column to samr row-column...&lt;/P&gt;&lt;P&gt;eg.. itab1 row1 col1 to itab2 row1 col1. Now say that the values to be moved are in different columns and rows in 2 itabs... but they have the same field names... then you use move-corresponding....&lt;/P&gt;&lt;P&gt;eg... you have itab1 - field1 field2 field3 and itab2 - field2 field3 field1.... if you use move corresponding it moves  itab1-field1 to itab2-field2....&lt;/P&gt;&lt;P&gt;when u want to move the whole tables use...&lt;/P&gt;&lt;P&gt;move itab1[ ]  to  itab2[ ].... the columns should be in the same sequence..thats is it should have the same sequence..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regds,&lt;/P&gt;&lt;P&gt;Madan...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 05:53:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611095#M1086522</guid>
      <dc:creator>madan_ullasa</dc:creator>
      <dc:date>2008-10-14T05:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: regarding move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611096#M1086523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply but what my doubt is in which case  Attempt should be made to move entire internal table headers in a single shot, rather than moving the fields one by one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 05:54:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611096#M1086523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T05:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: regarding move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611097#M1086524</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;STRONG&gt;MOVE  &amp;lt;itab1&amp;gt; To &amp;lt;itab2&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;	OR&lt;/P&gt;&lt;P&gt;&amp;lt;itab1&amp;gt; = &amp;lt;itab2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;To copy entire contents of one table into another in one execution&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;Copies the entire contents of one table into another in one execution.&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;Original data in target table overwritten.&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;For tables with header line use [] to distinguish it from work area since both have the same name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MOVE-CORRESPONDING &amp;lt;itab1&amp;gt; TO &amp;lt;itab2&amp;gt;-&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; Executes the statement for their header lines. &lt;/P&gt;&lt;P&gt; &amp;gt;&amp;gt;Searches for the sub-fields which occur both in itab1 and itab2 and  then generates, for all relevant field pairs which correspond to the    sub-fields ni , statements of the form &lt;/P&gt;&lt;P&gt;	MOVE itab1-ni TO itab2-ni. &lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; The other fields remain unchanged. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope your doubt get cleared&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sachin Gupta on Oct 14, 2008 7:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 05:54:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611097#M1086524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T05:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: regarding move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611098#M1086525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply but what my doubt is in which case  Attempt should be made to move entire internal table headers in a single shot, rather than moving the fields one by one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 05:55:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611098#M1086525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T05:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: regarding move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611099#M1086526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should make an attempt to move the entire structure when the type is same...both are declared using one structure/table it self....and have same fields..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move-corresponding is used..when not all the fields in itab1 are there in itab2...then only the fields which are there are moved(field names should be same). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vishwa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 05:57:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611099#M1086526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T05:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: regarding move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611100#M1086527</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;       Thanks for your reply now iam able to understand the exact meaning of them &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         thank you very much&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           problem solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards,&lt;/P&gt;&lt;P&gt;phaneendra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 05:58:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611100#M1086527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-14T05:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: regarding move and move-corresponding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611101#M1086528</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; if you have the same struct...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; itab1 with fields f1(10) type c,&lt;/P&gt;&lt;P&gt;                        f2(20) type c,&lt;/P&gt;&lt;P&gt;                       f3 type p.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab2 with fields f1(10) type c,&lt;/P&gt;&lt;P&gt;                        f2(20) type c,&lt;/P&gt;&lt;P&gt;                       f3 type p.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then you can just move one header to another or one whole body to another...&lt;/P&gt;&lt;P&gt;eg... itab1 = itab2  -&amp;gt; (if the tables have header)&lt;/P&gt;&lt;P&gt;       itab1[ ] = itab2 [ ] --&amp;gt; ( whole body )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2008 05:58:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-move-and-move-corresponding/m-p/4611101#M1086528</guid>
      <dc:creator>madan_ullasa</dc:creator>
      <dc:date>2008-10-14T05:58:31Z</dc:date>
    </item>
  </channel>
</rss>

