<?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: Problem in using At new in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918778#M381894</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sruthi,&lt;/P&gt;&lt;P&gt;in this way i can get the changed value after trigerring at new how to captured the previous or unchanged data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Feb 2007 11:47:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-08T11:47:54Z</dc:date>
    <item>
      <title>Problem in using At new</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918768#M381884</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; When at new is triggered, the data of the right side field is also changed to * or 0.&lt;/P&gt;&lt;P&gt;But I want to pass the data(unchanged data) of that row  on which the at new is fired to another internal table.I can't use on change of. Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 10:56:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918768#M381884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T10:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in using At new</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918769#M381885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare a flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: g_fl type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at new.&lt;/P&gt;&lt;P&gt;  g_fl = 'X'.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if g_fl = 'X'.&lt;/P&gt;&lt;P&gt;  move.&lt;/P&gt;&lt;P&gt; clear g_fl.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 10:57:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918769#M381885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T10:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in using At new</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918770#M381886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Dilip,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Use read table statement to avoid the same ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 10:58:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918770#M381886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T10:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in using At new</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918771#M381887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: wa_temp like line of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at itab into wa_itab.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;here copy data from wa_tab to wa_temp&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at new.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;move the data from wa_temp to ur desired internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;clear wa_temp.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vibha &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 11:00:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918771#M381887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T11:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in using At new</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918772#M381888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To avoid that you can use work areas or use read table statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;   at new field1.&lt;/P&gt;&lt;P&gt;       read table itab index sy-tabix.&lt;/P&gt;&lt;P&gt;   endat.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&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;loop at itab into wa_itab.&lt;/P&gt;&lt;P&gt;  at new field1.&lt;/P&gt;&lt;P&gt;*you can use the workarea here&lt;/P&gt;&lt;P&gt;  endat.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 11:02:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918772#M381888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T11:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in using At new</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918773#M381889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But I want the unchanged value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 11:06:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918773#M381889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T11:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in using At new</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918774#M381890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;  at new field1.&lt;/P&gt;&lt;P&gt;     read table itab index sy-tabix.&lt;/P&gt;&lt;P&gt;  endat.&lt;/P&gt;&lt;P&gt;  move-corresponding itab to itab1.             "declare itab1 same as itab&lt;/P&gt;&lt;P&gt;  append itab1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now ur  itab1 will contain all the unchanged values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this what you are looking for???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 11:15:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918774#M381890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T11:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in using At new</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918775#M381891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandrasekhar,&lt;/P&gt;&lt;P&gt; Thanks for your reply.This is what I have done but the itab to which I am passing the data contains all the records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dillip.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 11:29:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918775#M381891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T11:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in using At new</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918776#M381892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Oh sorry..

look at this
data : flag(1).

loop at itab.
&amp;lt;b&amp;gt;clear flag.&amp;lt;/b&amp;gt;   " Clear the flag here
at new field1.

read table itab index sy-tabix.
flag = 'X'.
endat.
if flag ne 'X'.
move-corresponding itab to itab1. "declare itab1 same as itab
append itab1.
endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Chandrasekhar Jagarlamudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 11:32:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918776#M381892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T11:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in using At new</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918777#M381893</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;u can use the following code to pass the the data(unchanged data) of that row on which the at new is fired to another internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;internal table&amp;gt;.&lt;/P&gt;&lt;P&gt; at new &amp;lt;field&amp;gt;.&lt;/P&gt;&lt;P&gt; read table &amp;lt;internal tbale&amp;gt; index sy-tabix.&lt;/P&gt;&lt;P&gt; if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;move-corresponding &amp;lt;internal table&amp;gt; to &amp;lt;internal table1&amp;gt;.&lt;/P&gt;&lt;P&gt; append &amp;lt;internal table1&amp;gt;.&lt;/P&gt;&lt;P&gt; clear: &amp;lt;internal table1&amp;gt;, &amp;lt;internal table&amp;gt;.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt; endat.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;Here &amp;lt;internal table1&amp;gt; and  &amp;lt;internal table&amp;gt; should be of same type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sruthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 11:37:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918777#M381893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T11:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in using At new</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918778#M381894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sruthi,&lt;/P&gt;&lt;P&gt;in this way i can get the changed value after trigerring at new how to captured the previous or unchanged data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 11:47:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918778#M381894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T11:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in using At new</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918779#M381895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Chandrasekhar. My problem is solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 10:58:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918779#M381895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T10:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in using At new</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918780#M381896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please reward and close the thread if ur problem is completely solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 11:05:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-using-at-new/m-p/1918780#M381896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T11:05:09Z</dc:date>
    </item>
  </channel>
</rss>

