<?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: Deleting from Dynamic Internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762437#M1305110</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : key(4) value 'field1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE &amp;lt;fs_dyn_table&amp;gt; WHERE (key) = '10'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ramakrishna L&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Sep 2009 19:16:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-08T19:16:50Z</dc:date>
    <item>
      <title>Deleting from Dynamic Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762431#M1305104</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; How can we delete data from dynamic internal table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a dynamic internal table &amp;lt;fs_dyn_table&amp;gt; which is of type any and can have any fields...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to delete all those records which have a value of '10' in a field named field1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written my delete statement in the following manner..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE &amp;lt;fs_dyn_table&amp;gt; WHERE field1 = '10'.....but it is not working...it gives me an error...stating that the line type of table must be statically defined.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2009 13:56:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762431#M1305104</guid>
      <dc:creator>former_member212005</dc:creator>
      <dc:date>2009-07-02T13:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting from Dynamic Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762432#M1305105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Loop on the internal table into a field-symbol of line type same as the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use assign component statement and then delete the corresponding record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2009 14:01:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762432#M1305105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-02T14:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting from Dynamic Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762433#M1305106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ankur...thanks for the reply...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you have suggested is DELETE statement inside LOOP...which is not feasible as there might be more than lacs of record...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2009 14:02:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762433#M1305106</guid>
      <dc:creator>former_member212005</dc:creator>
      <dc:date>2009-07-02T14:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting from Dynamic Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762434#M1305107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur....any other suggestion&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2009 14:11:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762434#M1305107</guid>
      <dc:creator>former_member212005</dc:creator>
      <dc:date>2009-07-02T14:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting from Dynamic Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762435#M1305108</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;Check the Rich Heilman answer in the thread..&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3854613"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jul 2009 14:21:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762435#M1305108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-02T14:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting from Dynamic Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762436#M1305109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Avinash...the answer given by Rich Heilman is same as Ankur's...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It gives me a feeling that this is the only way...we cannot avoid the delete statement inside the LOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jul 2009 05:40:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762436#M1305109</guid>
      <dc:creator>former_member212005</dc:creator>
      <dc:date>2009-07-03T05:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting from Dynamic Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762437#M1305110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : key(4) value 'field1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE &amp;lt;fs_dyn_table&amp;gt; WHERE (key) = '10'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ramakrishna L&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2009 19:16:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-from-dynamic-internal-table/m-p/5762437#M1305110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-08T19:16:50Z</dc:date>
    </item>
  </channel>
</rss>

