<?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 the uploaded record in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-uploaded-record/m-p/2674010#M617659</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;If you have the records in an internal table, use the following command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE ztable FROM TABLE itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have the records in a Work Area, use the following command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE ztable FROM wa.&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;You can directly delete the records if you know the keys:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE FROM ztable WHERE 'condition'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award Points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Aug 2007 10:41:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-28T10:41:03Z</dc:date>
    <item>
      <title>delete the uploaded record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-uploaded-record/m-p/2674007#M617656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I uploaded some records thru BDC(any Method) . Now that i want to delete that particular uploaded record from the database . How can i do that??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 10:26:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-uploaded-record/m-p/2674007#M617656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T10:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: delete the uploaded record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-uploaded-record/m-p/2674008#M617657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;  use the delete statement &lt;/P&gt;&lt;P&gt;delete from dbase where cond.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;keep the condition on key fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sandhya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 10:29:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-uploaded-record/m-p/2674008#M617657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T10:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: delete the uploaded record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-uploaded-record/m-p/2674009#M617658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;for which transaction u uploaded the records ? check with the functional consultant  he might be able to tell u wether there is any other transaction which can reverse the records.&lt;/P&gt;&lt;P&gt;rgds.&lt;/P&gt;&lt;P&gt;reward points if it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 10:30:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-uploaded-record/m-p/2674009#M617658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T10:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: delete the uploaded record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-uploaded-record/m-p/2674010#M617659</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;If you have the records in an internal table, use the following command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE ztable FROM TABLE itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have the records in a Work Area, use the following command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE ztable FROM wa.&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;You can directly delete the records if you know the keys:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE FROM ztable WHERE 'condition'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award Points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2007 10:41:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/delete-the-uploaded-record/m-p/2674010#M617659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-28T10:41:03Z</dc:date>
    </item>
  </channel>
</rss>

