<?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: Modify database table record in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548994#M1266862</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any thoughts Rob? I do not think we will be making any updates but just want to know how we can update a database table record other than doing it through a small program to update the table. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Apr 2009 18:12:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-27T18:12:04Z</dc:date>
    <item>
      <title>Modify database table record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548984#M1266852</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;We want to modify a database table record. We are unable to do this through the standard transaction. What are the best &amp;amp; safe options to modify a database table record directly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 15:43:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548984#M1266852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T15:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Modify database table record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548985#M1266853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Standard SAP table or custom table? If SAP - which table and field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 15:50:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548985#M1266853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T15:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Modify database table record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548986#M1266854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why dont you use modify then?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 15:53:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548986#M1266854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T15:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Modify database table record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548987#M1266855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
data: wa type TABLE.
select single * from TABLE into corresponding fields of wa
   where...


wa-field1 = ...
wa-field2 = ...
...
update TABLE from wa.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At leas like this you only modify a single record in your table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MayM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 15:59:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548987#M1266855</guid>
      <dc:creator>MaryM</dc:creator>
      <dc:date>2009-04-27T15:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: Modify database table record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548988#M1266856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is a standard SAP table and the table is EINA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 16:12:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548988#M1266856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T16:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Modify database table record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548989#M1266857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Seems dangerous - what field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 16:21:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548989#M1266857</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T16:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Modify database table record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548990#M1266858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stone,&lt;/P&gt;&lt;P&gt;For your requirement write one small program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt; Very bad example removed &amp;gt;&amp;gt;&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;Kiran Kumar G.A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Apr 27, 2009 1:19 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 17:01:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548990#M1266858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T17:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: Modify database table record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548991#M1266859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Small correction. Table is EINE and field is MWSKZ. I need to confirm if these are the right table and field. But for now let's say these are the right table and field. What options do we have?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 17:02:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548991#M1266859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T17:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Modify database table record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548992#M1266860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If those are correct, then it seems even more dangerous. You could get into big trouble with data integrity if you simply update the database table here. I'd look at cancelling the original transaction and re-creating it with the correct tax code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 17:12:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548992#M1266860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T17:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Modify database table record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548993#M1266861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From what I heard from business, they are unable to either change or delete the record. I'm just looking to see what all ways(except doing it through a small program) in which we can update the table record. Please let me know all the ways in which we can update a table record. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 17:18:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548993#M1266861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T17:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: Modify database table record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548994#M1266862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any thoughts Rob? I do not think we will be making any updates but just want to know how we can update a database table record other than doing it through a small program to update the table. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 18:12:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548994#M1266862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T18:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: Modify database table record</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548995#M1266863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you cannot change it using the original transaction (in change mode), look for another transaction that can change the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 18:15:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-record/m-p/5548995#M1266863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T18:15:56Z</dc:date>
    </item>
  </channel>
</rss>

