<?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 record from internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211668#M473798</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; Yes Delete itab inside a loop will delete the record one by one as the delete index is set as the loop index. &lt;/P&gt;&lt;P&gt; Thats is in the first pass of the loop the index is 1 and if you use a delete statement then the system will delete the first record and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Within a loop you dont have to specify a index explicitly.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; Cheers&lt;/P&gt;&lt;P&gt; VJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 May 2007 13:30:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-09T13:30:12Z</dc:date>
    <item>
      <title>Deleting record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211665#M473795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a looop i want to delete a record from internal table.&lt;/P&gt;&lt;P&gt;Can some1 plxzz tell  me how can i do it?&lt;/P&gt;&lt;P&gt;Will delete itab will delete that record in loop?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;waitin very eagerly 4 replies&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 13:22:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211665#M473795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T13:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211666#M473796</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 will only delete the currently record from the itab with "delete itab".&lt;/P&gt;&lt;P&gt;If you use it in combination with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;  delete itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise you can work with . DELETE itab FROM idx1 TO idx2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nicole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 13:26:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211666#M473796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T13:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211667#M473797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can delete the multiple records from database table by putting all the records, which you want to delete in internal table.  For example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE SFLIGHT FROM TABLE ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case whatever you have in internal table will be deleted from SFLIHT.&lt;/P&gt;&lt;P&gt;Note: append internal table with all the entries, which you want to delete.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 13:28:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211667#M473797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T13:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211668#M473798</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; Yes Delete itab inside a loop will delete the record one by one as the delete index is set as the loop index. &lt;/P&gt;&lt;P&gt; Thats is in the first pass of the loop the index is 1 and if you use a delete statement then the system will delete the first record and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Within a loop you dont have to specify a index explicitly.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; Cheers&lt;/P&gt;&lt;P&gt; VJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 13:30:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211668#M473798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T13:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211669#M473799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If u are in a loop then u need to use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; delete itab index sy-tabix.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 13:30:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211669#M473799</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2007-05-09T13:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211670#M473800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just do this in order to delete the current record from itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at itab.
delete itab.
endloop&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If useful reward,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 13:31:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211670#M473800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T13:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211671#M473801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajiv,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Loop at itab.
if &amp;lt;somecondition&amp;gt;. "ur condition...
delete itab.
endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jogdand M B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 13:32:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211671#M473801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T13:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211672#M473802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Rajiv,&lt;/P&gt;&lt;P&gt;            U can use the statement as given below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete it_tab where fld = tab-fld&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;delete it_tab1 at i_index_p.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case u want to delete all records from your table then use:&lt;/P&gt;&lt;P&gt;clear: itab, itab[]. Refresh itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE - itab_lines &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;... itab [FROM idx1] [TO idx2] [WHERE log_exp]... . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extras: &lt;/P&gt;&lt;P&gt;1. ... FROM idx1 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ... TO idx2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. ... WHERE log_exp &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;To delete several lines at once, you have to specify at least one of the additions FROM, TO, or WHERE. You can only use the additions FROM and TO with standard tables and sorted tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you specify several of the additions, the rows are deleted that result from the intersection of the individual additions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1 &lt;/P&gt;&lt;P&gt;... FROM idx1 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;If you specify FROM, all the table rows from the table index idx1 onwards are included. idx1 must be a data object with type i. If the value of idx1 is less than or equal to 0, a runtime error occurs. If the value is greater than the number of table rows, no rows are deleted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2 &lt;/P&gt;&lt;P&gt;... TO idx2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;If you specify TO, only the table rows up to table index idx2 are included. idx2 must be a data object with type i. If the values of idx2 is less than or equal to 0, a runtime error occurs. If the value is greater than the number of table rows, it is set to the number of rows. If idx2 is less than idx1, no rows are deleted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 3 &lt;/P&gt;&lt;P&gt;... WHERE log_exp &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;You can specify any logical expression log_exp after WHERE, for which the first operand of each individual comparison is a component of the internal table. This enables all logical expression with the exception of IS ASSIGNED, ISREQUESTED, and IS SUPPLIED. The dynamic specification of components using character-type data objects in parentheses is not supported here. All rows for which the logical expression is true are deleted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;Whereas every row of the internal table is checked for the logical expression of the WHERE addition in standard tables and hashed tables, you can use linked AND queries to optimize the access to sorted tables by checking at least the starting component of the table key for equality with the logical expression. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Deletes all rows of an internal table from row 4. The result is the same as in the example for APPEND ... SORTED BY. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_carrid TYPE sflight-carrid, &lt;/P&gt;&lt;P&gt;            p_connid TYPE sflight-connid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF seats, &lt;/P&gt;&lt;P&gt;        fldate TYPE sflight-fldate, &lt;/P&gt;&lt;P&gt;        seatsocc TYPE sflight-seatsocc, &lt;/P&gt;&lt;P&gt;        seatsmax TYPE sflight-seatsmax, &lt;/P&gt;&lt;P&gt;        seatsfree TYPE sflight-seatsocc, &lt;/P&gt;&lt;P&gt;      END OF seats. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA seats_tab LIKE STANDARD TABLE OF seats. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT fldate seatsocc seatsmax &lt;/P&gt;&lt;P&gt;       FROM sflight &lt;/P&gt;&lt;P&gt;       INTO TABLE seats_tab &lt;/P&gt;&lt;P&gt;       WHERE carrid = p_carrid AND &lt;/P&gt;&lt;P&gt;             connid = p_connid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT seats_tab INTO seats. &lt;/P&gt;&lt;P&gt;  seats-seatsfree = seats-seatsmax - seats-seatsocc. &lt;/P&gt;&lt;P&gt;  MODIFY seats_tab INDEX sy-tabix FROM seats. &lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SORT seats_tab BY seatsfree DESCENDING. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE seats_tab FROM 4. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If Helpful reward with some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pulokesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Pulokesh Karmakar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 13:34:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211672#M473802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T13:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211673#M473803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajiv,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The below code you can use to delete a single based on some where condition;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at  i_lips2 INTO w_lips2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; delete itab where matnr ne w_lips2-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 13:38:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211673#M473803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T13:38:49Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211674#M473804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajiv,&lt;/P&gt;&lt;P&gt;             &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;if i_tab-matnr = '0000000000000001'.&lt;/P&gt;&lt;P&gt;delete itab.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE ITAB INDEX 450&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hemant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 13:40:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211674#M473804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T13:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211675#M473805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajiv,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want a single record you can use following Code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at i_lips into wa_lips.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete itab where matnr ne wa_lips-matnr.&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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 13:41:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211675#M473805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T13:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211676#M473806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Deleting a record from an internal table will take the following forms:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Delete from an internal table &lt;/P&gt;&lt;P&gt;- DELETE itab. &lt;/P&gt;&lt;P&gt;- DELETE itab INDEX idx. &lt;/P&gt;&lt;P&gt;- DELETE itab FROM idx1 TO idx2. &lt;/P&gt;&lt;P&gt;- DELETE itab WHERE cond. &lt;/P&gt;&lt;P&gt;- DELETE ADJACENT DUPLICATES FROM itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Balakrishna.N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 13:41:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211676#M473806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T13:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Deleting record from internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211677#M473807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to delete individual records..&lt;/P&gt;&lt;P&gt;just do this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) loop at itab.&lt;/P&gt;&lt;P&gt;        delete itab.&lt;/P&gt;&lt;P&gt;        endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) delete itab where..&amp;lt;condition&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) delete itab index..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 13:46:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deleting-record-from-internal-table/m-p/2211677#M473807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T13:46:17Z</dc:date>
    </item>
  </channel>
</rss>

