<?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 the record from internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-record-from-internal-table/m-p/10545161#M1856536</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my requirement i need to delete the task when log_count &amp;lt;&amp;gt; 1.&lt;/P&gt;&lt;P&gt;the condition need to be executed when the log_count =1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The condition i had given is&lt;/P&gt;&lt;P&gt;if ls_swpsteplog-log_count &amp;lt;&amp;gt;1.&lt;/P&gt;&lt;P&gt;delete lt_swpsteplog where task_id&amp;nbsp; = ?.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jul 2014 06:54:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-07-31T06:54:33Z</dc:date>
    <item>
      <title>Delete the record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-record-from-internal-table/m-p/10545161#M1856536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my requirement i need to delete the task when log_count &amp;lt;&amp;gt; 1.&lt;/P&gt;&lt;P&gt;the condition need to be executed when the log_count =1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The condition i had given is&lt;/P&gt;&lt;P&gt;if ls_swpsteplog-log_count &amp;lt;&amp;gt;1.&lt;/P&gt;&lt;P&gt;delete lt_swpsteplog where task_id&amp;nbsp; = ?.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 06:54:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-record-from-internal-table/m-p/10545161#M1856536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T06:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: Delete the record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-record-from-internal-table/m-p/10545162#M1856537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;Hi&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;loop at &lt;SPAN style="color: #333333; font-size: 12px;"&gt; lt_swpsteplog&lt;/SPAN&gt; into &lt;SPAN style="color: #333333; font-size: 12px;"&gt;ls_swpsteplog&lt;/SPAN&gt;.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;if ls_swpsteplog-log_count &amp;lt;&amp;gt;1.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;delete lt_swpsteplog from &lt;SPAN style="color: #333333; font-size: 12px;"&gt;ls_swpsteplog&lt;/SPAN&gt;.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;endif.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;endloop.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;regards.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;laxman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 07:01:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-record-from-internal-table/m-p/10545162#M1856537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T07:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Delete the record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-record-from-internal-table/m-p/10545163#M1856538</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;i think no condition required just write&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete lt_swpsteplog where log_count &amp;lt;&amp;gt; 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which will remain the only records having log_count = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siva Prasad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 07:04:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-record-from-internal-table/m-p/10545163#M1856538</guid>
      <dc:creator>sivaprasad_paruchuri</dc:creator>
      <dc:date>2014-07-31T07:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Delete the record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-record-from-internal-table/m-p/10545164#M1856539</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;do not read the Data Where log_count &amp;lt;&amp;gt; 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &lt;SPAN style="color: #333333; font-size: 11.818181991577148px;"&gt; lt_swpsteplog&lt;/SPAN&gt; into &lt;SPAN style="color: #333333; font-size: 11.818181991577148px;"&gt; ls_swpsteplog where log_count &amp;lt;&amp;gt; 1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&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;uday...,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 07:09:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-record-from-internal-table/m-p/10545164#M1856539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-31T07:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Delete the record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-record-from-internal-table/m-p/10545165#M1856540</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;In this what is the issue are getting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 07:14:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-record-from-internal-table/m-p/10545165#M1856540</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2014-07-31T07:14:36Z</dc:date>
    </item>
  </channel>
</rss>

