<?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: Itab Read table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-read-table/m-p/4448320#M1054877</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;delete table itab with table key objct = 'M_MATE_WGR'  auth = 'T-D118086201' field = 'BEGRU'  von = 1000&lt;/P&gt;&lt;P&gt;bis = 5000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refer to this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/Helpdata/EN/06/aafd54fc4011d195280000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/Helpdata/EN/06/aafd54fc4011d195280000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Sep 2008 06:06:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-08T06:06:52Z</dc:date>
    <item>
      <title>Itab Read table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-read-table/m-p/4448316#M1054873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ignore Eriliar post please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is my Exact Query....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;OBJCT        AUTH            FIELD      VON       BIS&lt;/STRONG&gt;                                                                                &lt;/P&gt;&lt;P&gt;M_MATE_WGR   T-D118086200    ACTVT      01                 &lt;/P&gt;&lt;P&gt;M_MATE_WGR   T-D118086200    ACTVT      02                    &lt;/P&gt;&lt;P&gt;M_MATE_WGR   T-D118086200    ACTVT      03                             &lt;/P&gt;&lt;P&gt;M_MATE_WGR   T-D118086200    BEGRU      1001                                           &lt;/P&gt;&lt;P&gt;M_MATE_WGR   T-D118086200    BEGRU      2001      2500  &lt;/P&gt;&lt;P&gt;M_MATE_WGR   T-D118086201    ACTVT      03                                             &lt;/P&gt;&lt;P&gt;M_MATE_WGR   T-D118086201    BEGRU      1000      5000  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my itab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From  below combination &lt;/P&gt;&lt;P&gt;Auth = 'T-D118086201'  Von = '03' Field = 'ACTVT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to take value of AUTH = 'T-D118086201'  &lt;/P&gt;&lt;P&gt;then by using this combination i want to delete below line.&lt;/P&gt;&lt;P&gt;M_MATE_WGR   T-D118086201    BEGRU      1000      5000  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 05:47:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-read-table/m-p/4448316#M1054873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T05:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Itab Read table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-read-table/m-p/4448317#M1054874</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;  Follow the logic below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table itab into wa1 with key Auth = 'T-D118086201' Von = '03' Field = 'ACTVT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete itab from wa1 index sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 05:53:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-read-table/m-p/4448317#M1054874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T05:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: Itab Read table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-read-table/m-p/4448318#M1054875</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;delete itab where Auth = 'T-D118086201' and &lt;/P&gt;&lt;P&gt;Von = '03' and&lt;/P&gt;&lt;P&gt;Field = 'ACTVT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;or&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;read table itab with key Auth = 'T-D118086201' and &lt;/P&gt;&lt;P&gt;                                      Von = '03' and&lt;/P&gt;&lt;P&gt;                                       Field = 'ACTVT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0&lt;/P&gt;&lt;P&gt;delete itab index sy-tabix.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 06:02:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-read-table/m-p/4448318#M1054875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T06:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: Itab Read table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-read-table/m-p/4448319#M1054876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Monica,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Delete itab from wa where Auth = 'T-D118086201' 
                                and Von = '03'
                                and Field = 'ACTVT'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swapna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 06:04:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-read-table/m-p/4448319#M1054876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T06:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Itab Read table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/itab-read-table/m-p/4448320#M1054877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;delete table itab with table key objct = 'M_MATE_WGR'  auth = 'T-D118086201' field = 'BEGRU'  von = 1000&lt;/P&gt;&lt;P&gt;bis = 5000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refer to this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/Helpdata/EN/06/aafd54fc4011d195280000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/Helpdata/EN/06/aafd54fc4011d195280000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 06:06:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/itab-read-table/m-p/4448320#M1054877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T06:06:52Z</dc:date>
    </item>
  </channel>
</rss>

