<?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 delete table entries in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-table-entries/m-p/3044681#M720679</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 want to delete table entries based on the internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can i use for all entires for delete?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if so how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont want to use loop as it takes more time&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;senthtil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Nov 2007 13:19:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-15T13:19:02Z</dc:date>
    <item>
      <title>delete table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-table-entries/m-p/3044681#M720679</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 want to delete table entries based on the internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can i use for all entires for delete?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if so how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont want to use loop as it takes more time&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;senthtil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2007 13:19:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-table-entries/m-p/3044681#M720679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-15T13:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: delete table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-table-entries/m-p/3044682#M720680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;H!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES is not available to DELETE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the WHERE or the INDEX statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE itab WHERE matnr = '123'.&lt;/P&gt;&lt;P&gt;LOOP AT itab2.&lt;/P&gt;&lt;P&gt;DELETE itab INDEX sy-tabix.  "delete by itab2's SY-TABIX&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;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2007 13:21:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-table-entries/m-p/3044682#M720680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-15T13:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: delete table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-table-entries/m-p/3044683#M720681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Senthil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; do like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; delete &amp;lt;itab&amp;gt; where ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2007 13:21:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-table-entries/m-p/3044683#M720681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-15T13:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: delete table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-table-entries/m-p/3044684#M720682</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 can use as below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Delete itab where fieldname = 'some value'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above code will delete all the entries from the internal table which satisfies the condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2007 14:08:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-table-entries/m-p/3044684#M720682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-15T14:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: delete table entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-table-entries/m-p/3044685#M720683</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 are not making clear if you want to delete the internal table entries or ddic table entries, in case you want to delete internal table entries use one of the above suggestions else use something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;delete ddic_table from table itab[].&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kostas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2007 14:12:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-table-entries/m-p/3044685#M720683</guid>
      <dc:creator>kostas_tsioubris</dc:creator>
      <dc:date>2007-11-15T14:12:06Z</dc:date>
    </item>
  </channel>
</rss>

