<?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: database updation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-updation/m-p/4813439#M1126549</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
"Define strucutre of your dbtable
TABLES: dbtable.

"Now move all corresponding fields of your work area to this structure
MOVE-CORRESPONDING workarea TO your_table.

"now you are able to insert the entry to dbtable from this db strucutre
insert dbtable from dbtable.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Nov 2008 13:21:29 GMT</pubDate>
    <dc:creator>MarcinPciak</dc:creator>
    <dc:date>2008-11-18T13:21:29Z</dc:date>
    <item>
      <title>database updation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-updation/m-p/4813438#M1126548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i need to update the database from the internal table , my internal table contains only few fields refering to the database table fields , so when i am using  stmt,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert dbase values workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is saying workarea is not long enough.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 12:53:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/database-updation/m-p/4813438#M1126548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T12:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: database updation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-updation/m-p/4813439#M1126549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
"Define strucutre of your dbtable
TABLES: dbtable.

"Now move all corresponding fields of your work area to this structure
MOVE-CORRESPONDING workarea TO your_table.

"now you are able to insert the entry to dbtable from this db strucutre
insert dbtable from dbtable.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 13:21:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/database-updation/m-p/4813439#M1126549</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2008-11-18T13:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: database updation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-updation/m-p/4813440#M1126550</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;for data base updates you can do one thing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use MODIFTY table from ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will update the record values if that record already exsists and if not it will insert that record in to the data base&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 04:55:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/database-updation/m-p/4813440#M1126550</guid>
      <dc:creator>former_member206439</dc:creator>
      <dc:date>2008-11-19T04:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: database updation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/database-updation/m-p/4813441#M1126551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;First Clearly explain you want to Insert  into database table or Update a Database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to update a particular field of database table use the below statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE &amp;lt;dbtab&amp;gt; SET field1 = value1 field2 = value2 WHERE field3 = value3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Incase if you want to insert then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA &amp;lt;workarea&amp;gt; LIKE &amp;lt;dbtab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Fill the work area with the required fields and the use the below statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT &amp;lt;dbtab&amp;gt; FROM &amp;lt;waarea&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 05:20:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/database-updation/m-p/4813441#M1126551</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2008-11-19T05:20:09Z</dc:date>
    </item>
  </channel>
</rss>

