<?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: Entry from DB table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874873#M1323901</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;goto ABAP editor and using delete statement try to delete the data in the table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE { {FROM target [WHERE sql_cond]} &lt;/P&gt;&lt;P&gt;       | {target FROM source} }. &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;The statement DELETE deletes one or more rows from the database table specified in target. The rows that are to be deleted are specified either in a WHERE condition sql_cond or with data objects in source. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you still need any more help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Rajeshwar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jul 2009 09:50:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-15T09:50:22Z</dc:date>
    <item>
      <title>Entry from DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874870#M1323898</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 want delete an entry from DB table, can u help how can I delete, without effecting other data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2009 09:09:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874870#M1323898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-15T09:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: Entry from DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874871#M1323899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to se11 &lt;/P&gt;&lt;P&gt;                             Give table name        &lt;/P&gt;&lt;P&gt;                                            Press F7( ie: display table entries)&lt;/P&gt;&lt;P&gt;                                                    F8&lt;/P&gt;&lt;P&gt;                                                            Select the entry&lt;/P&gt;&lt;P&gt;                                                                     Give /H in command bar&lt;/P&gt;&lt;P&gt;                                                                              Press enter(debugger switch on)&lt;/P&gt;&lt;P&gt;                                                                                Press enter again&lt;/P&gt;&lt;P&gt;                                                                                Give CODE in debugge&lt;/P&gt;&lt;P&gt;                                                                                F8&lt;/P&gt;&lt;P&gt;                                                                                Select the entry&lt;/P&gt;&lt;P&gt;                                                                                Press display (F2)&lt;/P&gt;&lt;P&gt;                                                                                /H&lt;/P&gt;&lt;P&gt;                                                                                Press ENTER twice&lt;/P&gt;&lt;P&gt;                                                                                Now edit the CODE from SHOW to DELE&lt;/P&gt;&lt;P&gt;                                                                                Press ENTER&lt;/P&gt;&lt;P&gt;                                                                                F8&lt;/P&gt;&lt;P&gt;                                                                                Press delete in Menu bar&lt;/P&gt;&lt;P&gt;                                                                                Now check in the DB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2009 09:36:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874871#M1323899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-15T09:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Entry from DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874872#M1323900</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;&lt;/P&gt;&lt;P&gt;If you want to delete all the record form table then you can use T-code SE14.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go To --&amp;gt; Se14 ---&amp;gt; Enter table name &amp;amp; press Edit Button --- &amp;gt; Select Delete Data Radio Button ---&amp;gt; Click on Activate and Adjust Database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You Can also Generate Table maintains of the table. So that u can delete record of the table in tcode SM30.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to delete record by code then use stmt DELETE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ShreeMohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2009 09:38:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874872#M1323900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-15T09:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Entry from DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874873#M1323901</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;goto ABAP editor and using delete statement try to delete the data in the table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE { {FROM target [WHERE sql_cond]} &lt;/P&gt;&lt;P&gt;       | {target FROM source} }. &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;The statement DELETE deletes one or more rows from the database table specified in target. The rows that are to be deleted are specified either in a WHERE condition sql_cond or with data objects in source. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you still need any more help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Rajeshwar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2009 09:50:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874873#M1323901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-15T09:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Entry from DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874874#M1323902</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;Thanks for all to ur consideration. Through SM30 we can not delete bcs that entry does not exist there. reagrding through SE16 by debugging I already done, but as per my ABAP team here they are saying that is not recommendable, bcs it may be effect to other data in future..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but regarding code fro DELETE which u r saying I will try. before that pls confirm me if we will do this thing through Coding then it will not be effect to other data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls reply me soon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2009 11:14:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874874#M1323902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-15T11:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Entry from DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874875#M1323903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;by deleting  it does'nt effect other data, check whether it is a key field , if not then you can delete it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLease let me know if you still need any more help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Rajeshwar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2009 11:19:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874875#M1323903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-15T11:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: Entry from DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874876#M1323904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajeshwar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its really thankful for ur reply. but can u just tell there is any SAP note for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2009 11:37:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874876#M1323904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-15T11:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Entry from DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874877#M1323905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can specify the delete statement with where condition and only the entries which satisfy the condition will be deleted. it will not delete any other data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete from ddtable where field1 = 'Test'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In above statement the enties whose field1 = test will be deleted from dd table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2009 12:19:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874877#M1323905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-15T12:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: Entry from DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874878#M1323906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think we need to know from wich table you are trying to delete the record. Is it a standard or Z ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 13:54:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874878#M1323906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-20T13:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: Entry from DB table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874879#M1323907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fetch your entry into work area say wa. Then use the delete statement: Delete Dbtab from wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;rama&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 11:55:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/entry-from-db-table/m-p/5874879#M1323907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T11:55:34Z</dc:date>
    </item>
  </channel>
</rss>

