<?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: how to avoid a field while using MOVE-CORRESPONDING in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128339#M111007</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If nothing works, then&lt;/P&gt;&lt;P&gt;   do in 2 steps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Declare ONE More work area,&lt;/P&gt;&lt;P&gt;   similar to I_FINALTAB.&lt;/P&gt;&lt;P&gt;   (say ITAB) (for temporary backup/copy purpose)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Then everytime (for eg. in a loop)&lt;/P&gt;&lt;P&gt;  use this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB  = I_FINALTAB.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING WA_TAB_RBCO INTO I_FINALTAB.&lt;/P&gt;&lt;P&gt;I_FINALTAB-BUZEI = ITAB-BUZEI.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jan 2006 14:25:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-25T14:25:21Z</dc:date>
    <item>
      <title>how to avoid a field while using MOVE-CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128332#M111000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;i am using MOVE-CORRESPONDING WA_TAB_RBCO INTO I_FINALTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but while moving i don't want to move one field alone how to give that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_FINALTAB has got many fields like belnr, buzei but while giving MOVE-CORRESPONDING I need to remove buzei how should i give it using MOVE-CORRESPONDING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;anitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2006 13:52:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128332#M111000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-25T13:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid a field while using MOVE-CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128333#M111001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;clear the field before moving..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear WA_TAB_RBCO-BUZEI. &lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING WA_TAB_RBCO INTO I_FINALTAB.&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;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2006 13:54:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128333#M111001</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-01-25T13:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid a field while using MOVE-CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128334#M111002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why dont you clear the field after move-corresponding ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : 
       wa_finaltab like line of ifinaltab.
       clear wa_finaltab-buzei
modify ifinalab 
   from wa_finaltab 
   transporting buzei where buzei ne space.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Just an idea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2006 13:55:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128334#M111002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-25T13:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid a field while using MOVE-CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128335#M111003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi anitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Here you can do 3 things,if it is only one field you &lt;/P&gt;&lt;P&gt; dont want to move data then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  After move-corresponding clear that field before append&lt;/P&gt;&lt;P&gt;   clear I_FINALTAB-buzei.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      or&lt;/P&gt;&lt;P&gt;  You can declare that particular field with different &lt;/P&gt;&lt;P&gt;  name in the I_FINALTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     or&lt;/P&gt;&lt;P&gt;  Clear the workarea field before moving.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Hope this will help you.&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Siri.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srilatha T&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2006 13:57:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128335#M111003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-25T13:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid a field while using MOVE-CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128336#M111004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to keep old value...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : l_tmp_buzei type bizei.

loop at tab.
   l_tmp_buzei = l_new-buzei.
   move-corr...
   l_new-buzei = l_tmp_buzei.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;thx for reward&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2006 13:58:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128336#M111004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-25T13:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid a field while using MOVE-CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128337#M111005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before move-corresponding clear that field alone.&lt;/P&gt;&lt;P&gt;that will solve the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2006 13:59:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128337#M111005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-25T13:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid a field while using MOVE-CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128338#M111006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't declare that field itself if you don't need it.If you still need it for some other purpose,&lt;/P&gt;&lt;P&gt;Have that field under a different name in I_Finaltab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2006 14:04:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128338#M111006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-25T14:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to avoid a field while using MOVE-CORRESPONDING</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128339#M111007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If nothing works, then&lt;/P&gt;&lt;P&gt;   do in 2 steps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Declare ONE More work area,&lt;/P&gt;&lt;P&gt;   similar to I_FINALTAB.&lt;/P&gt;&lt;P&gt;   (say ITAB) (for temporary backup/copy purpose)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Then everytime (for eg. in a loop)&lt;/P&gt;&lt;P&gt;  use this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB  = I_FINALTAB.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING WA_TAB_RBCO INTO I_FINALTAB.&lt;/P&gt;&lt;P&gt;I_FINALTAB-BUZEI = ITAB-BUZEI.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2006 14:25:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-avoid-a-field-while-using-move-corresponding/m-p/1128339#M111007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-25T14:25:21Z</dc:date>
    </item>
  </channel>
</rss>

