<?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 statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853316#M926301</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;you use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move-corresponding  when the source structure and the destination srtucture are noth the same or the field order in both are not the same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;both the below statemnts can be used because first one is direct single step assignment and the next is individual assignment&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Move-corresponding ztab to itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-empno = ztab-empno.&lt;/P&gt;&lt;P&gt;itab-empname = ztab-empname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move when source srtructure and destination are the one and same&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;both the below statemnts can be used because first one is direct single step assignment and the next is individual assignment&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move ztab to itab.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;itab-eno = ztab-eno.&lt;/P&gt;&lt;P&gt;itab-mno = ztab-mno.&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;regards&lt;/P&gt;&lt;P&gt;prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 May 2008 07:16:47 GMT</pubDate>
    <dc:creator>prasanth_kasturi</dc:creator>
    <dc:date>2008-05-26T07:16:47Z</dc:date>
    <item>
      <title>Move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853314#M926299</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;STRONG&gt;Is correct statement below..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.) Move-corresponding ztab to itab.&lt;/P&gt;&lt;P&gt;             or&lt;/P&gt;&lt;P&gt;     itab-empno = ztab-empno.&lt;/P&gt;&lt;P&gt;     itab-empname = ztab-empname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B.) Move ztab to itab.&lt;/P&gt;&lt;P&gt;              or&lt;/P&gt;&lt;P&gt;     itab-eno = ztab-eno.&lt;/P&gt;&lt;P&gt;     itab-mno = ztab-mno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reply me immediately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;S.Suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:10:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853314#M926299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T07:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853315#M926300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move-Corresponding will work in case the field name in source structure and target structure are same.&lt;/P&gt;&lt;P&gt;Since in your case field names in source and target structure are same, move-corresponding will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this answers your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:13:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853315#M926300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T07:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853316#M926301</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;you use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move-corresponding  when the source structure and the destination srtucture are noth the same or the field order in both are not the same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;both the below statemnts can be used because first one is direct single step assignment and the next is individual assignment&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Move-corresponding ztab to itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-empno = ztab-empno.&lt;/P&gt;&lt;P&gt;itab-empname = ztab-empname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move when source srtructure and destination are the one and same&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;both the below statemnts can be used because first one is direct single step assignment and the next is individual assignment&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move ztab to itab.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;itab-eno = ztab-eno.&lt;/P&gt;&lt;P&gt;itab-mno = ztab-mno.&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;regards&lt;/P&gt;&lt;P&gt;prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:16:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853316#M926301</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2008-05-26T07:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853317#M926302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I knew that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is correct program below so that,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move-corresponding ztab to itab&lt;/P&gt;&lt;P&gt;          SAME AS&lt;/P&gt;&lt;P&gt;itab-eno = ztab-eno.????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move ztab to itab.&lt;/P&gt;&lt;P&gt; SAME AS&lt;/P&gt;&lt;P&gt;itab-eno = ztab-eno???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reply me soon,&lt;/P&gt;&lt;P&gt;S.Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:18:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853317#M926302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T07:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: Move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853318#M926303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move-Corresponding will work if the  &lt;STRONG&gt;field name&lt;/STRONG&gt; and &lt;STRONG&gt;data element&lt;/STRONG&gt; is same  in source structure and target structure are same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;otherwise  u can use like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;zin_f1&amp;gt; = &amp;lt;zf1&amp;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;If  it is usefull Plz Reward&lt;/P&gt;&lt;P&gt;&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;Anbu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:19:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853318#M926303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T07:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: Move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853319#M926304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ya its the one and same when itab and ztab contain only one field eno ( data element and domain must be the same for using move-corresponding)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;both the below statemnts can be used because first one is direct single step assignment and the next is individual assignment&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;prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:20:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853319#M926304</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2008-05-26T07:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: Move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853320#M926305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statements are correct ...move corresponding statement and move statements will work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Megha Sharma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: MEGHA  SHARMA on May 26, 2008 9:25 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:25:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853320#M926305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T07:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: Move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853321#M926306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first one is correct.&lt;/P&gt;&lt;P&gt;It will assign eno correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second one I am not sure.&lt;/P&gt;&lt;P&gt;SAP documents says MOVE can used only to moving a field and not an internal table.&lt;/P&gt;&lt;P&gt;So the second statement may dump or might give syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:25:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853321#M926306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T07:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Move statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853322#M926307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;When source and   dest structures are different then we can make use of move-corresponding (or) if both are identical structres with same names then we can make use of Move staement.&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;Umakanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:26:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-statement/m-p/3853322#M926307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T07:26:02Z</dc:date>
    </item>
  </channel>
</rss>

