<?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 complete records of internal table while debugging in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867986#M929595</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gaurav,&lt;/P&gt;&lt;P&gt;We can't do this in single step. Instead of that u can pu ur oen checks like If sy-uname Eq ur ID.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: imara TYPE TABLE OF mara.
SELECT * FROM mara into table imara up to 10 rows.
IF sy-uname EQ ur id.
DESCRIBE TABLE imara.
DELETE imara FROM 1 TO sy-tfill.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 May 2008 10:15:55 GMT</pubDate>
    <dc:creator>vinod_vemuru2</dc:creator>
    <dc:date>2008-05-16T10:15:55Z</dc:date>
    <item>
      <title>Delete complete records of internal table while debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867984#M929593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to delete all records of internal table while debugging.&lt;/P&gt;&lt;P&gt;There are 160000 records are coming in the internal table so i cant delete them one by one.&lt;/P&gt;&lt;P&gt;i want to delete them in single shot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 10:07:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867984#M929593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T10:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: Delete complete records of internal table while debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867985#M929594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;are you using the new abap debugger? If so you can use right mouse click and delete all the records. Don't think this is possible in old debugger though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 10:15:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867985#M929594</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-16T10:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Delete complete records of internal table while debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867986#M929595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gaurav,&lt;/P&gt;&lt;P&gt;We can't do this in single step. Instead of that u can pu ur oen checks like If sy-uname Eq ur ID.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: imara TYPE TABLE OF mara.
SELECT * FROM mara into table imara up to 10 rows.
IF sy-uname EQ ur id.
DESCRIBE TABLE imara.
DELETE imara FROM 1 TO sy-tfill.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 10:15:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867986#M929595</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-05-16T10:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Delete complete records of internal table while debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867987#M929596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friend , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is a Zxyz program , i.e program created by yourself  , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare (  w_del type i  )  variable &lt;/P&gt;&lt;P&gt;and write the condition like , whereever u want to delete itab records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if w_del = 1 . &lt;/P&gt;&lt;P&gt;   delete itab . &lt;/P&gt;&lt;P&gt;endif . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while in debugging , when u reach this particular step make w_del to 1 in debugging and save , &lt;/P&gt;&lt;P&gt;then delete statement is executed and all the records are deleted , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if the condition fails data records will remain same .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks , &lt;/P&gt;&lt;P&gt;Reward if usefull.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 10:18:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867987#M929596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T10:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Delete complete records of internal table while debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867988#M929597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a SAP standard program. &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 10:35:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867988#M929597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T10:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Delete complete records of internal table while debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867989#M929598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Micky,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Am using old Debugger,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 10:36:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867989#M929598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T10:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Delete complete records of internal table while debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867990#M929599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the Debugging Mode, use path&lt;/P&gt;&lt;P&gt;Debugging &amp;gt; Switch to New ABAP Debugger&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will start New Debugger, then delete that data from Internal table by right click&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 10:41:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-complete-records-of-internal-table-while-debugging/m-p/3867990#M929599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T10:41:48Z</dc:date>
    </item>
  </channel>
</rss>

