<?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: internal table delete in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805166#M345658</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so how do clear the work area of an internal table with header line?&lt;/P&gt;&lt;P&gt;shud i use clear itab before using the condition?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Dec 2006 12:29:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-20T12:29:48Z</dc:date>
    <item>
      <title>internal table delete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805160#M345652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi All,&lt;/P&gt;&lt;P&gt;I am having an internal table itab without a header line but with an work area,&lt;/P&gt;&lt;P&gt;begin of itab occurs 100,&lt;/P&gt;&lt;P&gt;Now when i use condition delete itab where logexp.&lt;/P&gt;&lt;P&gt;all the contents in itab that match the logexp are deleted but not the one that is contained in the current work area.&lt;/P&gt;&lt;P&gt;so i still have one record that meets the logexp and not deleted.&lt;/P&gt;&lt;P&gt;will using &lt;/P&gt;&lt;P&gt;delete itab[] where logexp.&lt;/P&gt;&lt;P&gt;help??&lt;/P&gt;&lt;P&gt;thanks and regards,&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 12:14:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805160#M345652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T12:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: internal table delete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805161#M345653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gaurav , &lt;/P&gt;&lt;P&gt;  The decleration begin of itab occurs 100 , automatically adds a header line to your internal table , but any way this should not be happening , pleasee check again if the value is actaully matching the one in internal table.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 12:17:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805161#M345653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T12:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: internal table delete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805162#M345654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gaurav&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you delete the internal table only the entries in the internal table will be cleared&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The work area is being referenced separate from the internal table&lt;/P&gt;&lt;P&gt;To clear the work area all you have to do is the statement CLEAR&lt;/P&gt;&lt;P&gt;e.g&lt;/P&gt;&lt;P&gt;CLEAR:  wa_itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 12:18:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805162#M345654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T12:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: internal table delete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805163#M345655</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;  Use Clear &amp;lt;workarea name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Haritha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 12:20:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805163#M345655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T12:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: internal table delete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805164#M345656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use &amp;lt;b&amp;gt;clear&amp;lt;/b&amp;gt; before the start of the loop .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also after the deletion is over when u meet the logical condition.&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, 20 Dec 2006 12:21:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805164#M345656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T12:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: internal table delete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805165#M345657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gaurav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the statement you are using will clear the content of internal table only. Your work area's content will not be erased. You need to clear it manually using another statement. This is a standard case with SAP ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jignesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 12:24:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805165#M345657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T12:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: internal table delete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805166#M345658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so how do clear the work area of an internal table with header line?&lt;/P&gt;&lt;P&gt;shud i use clear itab before using the condition?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 12:29:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805166#M345658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T12:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: internal table delete</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805167#M345659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gaurav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clear itab will clears the internal table header...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clear itab[] will clears the internal table.&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;Satya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 12:35:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-delete/m-p/1805167#M345659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T12:35:19Z</dc:date>
    </item>
  </channel>
</rss>

