<?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: Delete statement for string type internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665964#M29151</link>
    <description>&lt;P&gt;If people read the documentation, they'd find table_line too.&lt;/P&gt;
  &lt;P&gt;&lt;A href="https://help.sap.com/http.svc/rc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abenitab_components.htm" target="test_blank"&gt;https://help.sap.com/http.svc/rc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abenitab_components.htm&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Jun 2018 09:44:42 GMT</pubDate>
    <dc:creator>retired_member</dc:creator>
    <dc:date>2018-06-26T09:44:42Z</dc:date>
    <item>
      <title>Delete statement for string type internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665960#M29147</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;I have string type internal table. Now i want to delete the initial values in internal table.&lt;/P&gt;
  &lt;P&gt;Is it possible to delete using DELETE statement?&lt;/P&gt;
  &lt;P&gt;Code:&lt;/P&gt;
  &lt;P&gt;Data gt_tab TYPE STANDARD TABLE OF string.&lt;/P&gt;
  &lt;P&gt;Delete gt_tab where _____ is initial????&lt;/P&gt;
  &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
  &lt;P&gt;Note: I knew we can delete it through loop statement. &lt;/P&gt;
  &lt;P&gt;Thanks,&lt;/P&gt;
  &lt;P&gt;Chella&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 08:57:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665960#M29147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-06-26T08:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Delete statement for string type internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665961#M29148</link>
      <description>&lt;P&gt;Did you try to use pseudo component &lt;A href="https://help.sap.com/http.svc/rc/abapdocu_752_index_htm/7.52/en-US/abenpseudo_component_glosry.htm"&gt;TABLE_LINE&lt;/A&gt;?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 09:35:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665961#M29148</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-06-26T09:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Delete statement for string type internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665962#M29149</link>
      <description>&lt;P&gt;You'll be better off, performance wise, using a SORTED TABLE.&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;Data gt_tab TYPE SORTED TABLE OF string WITH NON-UNIQUE KEY table_line.
Delete gt_tab where table_line is initial.
&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 09:35:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665962#M29149</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2018-06-26T09:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Delete statement for string type internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665963#M29150</link>
      <description>&lt;P&gt;If people would get away from using STANDARD tables all the time and start using HASHED and SORTED by default, they'd eventually stumble on TABLE_LINE when they're defining the key. &lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 09:37:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665963#M29150</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2018-06-26T09:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Delete statement for string type internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665964#M29151</link>
      <description>&lt;P&gt;If people read the documentation, they'd find table_line too.&lt;/P&gt;
  &lt;P&gt;&lt;A href="https://help.sap.com/http.svc/rc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abenitab_components.htm" target="test_blank"&gt;https://help.sap.com/http.svc/rc/abapdocu_752_index_htm/7.52/en-US/index.htm?file=abenitab_components.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 09:44:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665964#M29151</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2018-06-26T09:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Delete statement for string type internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665965#M29152</link>
      <description>&lt;P&gt;Quickly rattle off a question or expend brain power reading... I can't see it catching on. &lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 10:32:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665965#M29152</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2018-06-26T10:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Delete statement for string type internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665966#M29153</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;Thanks to everyone. &lt;/P&gt;
  &lt;P&gt;DELETE gt_tab WHERE table_line IS INITIAL. -- This statement itself working fine. But i was used inside perform, it was STANDARD TABLE so It was not allowed.&lt;/P&gt;
  &lt;P&gt;&lt;BR /&gt;&lt;/P&gt;
  &lt;P&gt;Thanks,&lt;BR /&gt;Chella&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 13:27:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665966#M29153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-06-26T13:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: Delete statement for string type internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665967#M29154</link>
      <description>&lt;P&gt;Don't use FORMs - they're obsolete.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 14:17:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665967#M29154</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2018-06-26T14:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Delete statement for string type internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665968#M29155</link>
      <description>&lt;P&gt;Huh? &lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 15:51:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665968#M29155</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2018-06-26T15:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Delete statement for string type internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665969#M29156</link>
      <description>&lt;P&gt;Thanks for let us know. &lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 10:50:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665969#M29156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-07-02T10:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: Delete statement for string type internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665970#M29157</link>
      <description>&lt;P&gt;It is documented.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 11:07:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665970#M29157</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2018-07-02T11:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: Delete statement for string type internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665971#M29158</link>
      <description>&lt;P&gt;To clarify what Horst is saying - There is no reason why using DELETE... on a standard table inside a form would be forbidden. &lt;/P&gt;
  &lt;P&gt;What you've posted makes no sense.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 11:08:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-statement-for-string-type-internal-table/m-p/665971#M29158</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2018-07-02T11:08:43Z</dc:date>
    </item>
  </channel>
</rss>

