<?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: remove entries in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652981#M879829</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Eric do you delete all entries or only those lines&lt;/P&gt;&lt;P&gt;where are affected ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Apr 2008 09:30:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-03T09:30:57Z</dc:date>
    <item>
      <title>remove entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652977#M879825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Abap Gurus!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls help me to do the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any internal table has many entries of messages&lt;/P&gt;&lt;P&gt;with various Error types like S Success, E Error, W Warning, I Info, A Abort&lt;/P&gt;&lt;P&gt;and various Id s and Numbers.&lt;/P&gt;&lt;P&gt;The goal is to delete all entries where match with &lt;/P&gt;&lt;P&gt;Type EQ 'E' and Id EQ 'BA' and Number EQ '162'&lt;/P&gt;&lt;P&gt;How does this solution look with Abap ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx&lt;/P&gt;&lt;P&gt;ertas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 08:22:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652977#M879825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T08:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: remove entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652978#M879826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;perhaps you are talking about the messages recieved in internal after BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if yes then try and use this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at IT_MSG_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if &amp;lt;ur condition&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move-corresponding in wa_msg_tab to wa_copy. &lt;/P&gt;&lt;P&gt;append wa_copy to it_copy.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete it_msg_tab from IT_copy.&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;kushagra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 08:26:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652978#M879826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T08:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: remove entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652979#M879827</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;something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT itab WHERE e EQ 'E' ABD Id EQ 'BA' AND Number EQ '162'.&lt;/P&gt;&lt;P&gt;DELETE itab.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 08:28:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652979#M879827</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-04-03T08:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: remove entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652980#M879828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Delete from GT_MSG &lt;/P&gt;&lt;P&gt; WHERE Type EQ 'E' &lt;/P&gt;&lt;P&gt;       and Id EQ 'BA' &lt;/P&gt;&lt;P&gt;        and Number EQ '162'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will help..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 08:33:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652980#M879828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T08:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: remove entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652981#M879829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Eric do you delete all entries or only those lines&lt;/P&gt;&lt;P&gt;where are affected ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 09:30:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652981#M879829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T09:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: remove entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652982#M879830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did the coding: LOOP AT ... WHERE ... Important here is the WHERE condition, which means the lines which are not suitable for the condition, won't be processed. This case there is a delete statement inside the LOOP, that means, only those lines will be deleted, which get through the LOOP condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the other hand, if I would like to delete all lines of an internal table, I would simply code CLEAR itab[]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 09:35:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652982#M879830</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-04-03T09:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: remove entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652983#M879831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Eric and the other helpers thank you very much&lt;/P&gt;&lt;P&gt;for helping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ertas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 09:50:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-entries/m-p/3652983#M879831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T09:50:11Z</dc:date>
    </item>
  </channel>
</rss>

