<?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: update custom table through ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-custom-table-through-abap/m-p/3168662#M753930</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;Yes.You can use update/modify statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE dbtab SET f1 = value1 where condition.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE dbtab FROM TABLE itab. &lt;/P&gt;&lt;P&gt;Here from itab internal table, you can update the ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if you are not sure wherether the particular record exists in ztable,you can use modify statement. It will insert the record if it is not there already.If record exists in ztable,it will update the record.&lt;/P&gt;&lt;P&gt;Modify dbtab from table itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Dec 2007 02:32:32 GMT</pubDate>
    <dc:creator>jayanthi_jayaraman</dc:creator>
    <dc:date>2007-12-07T02:32:32Z</dc:date>
    <item>
      <title>update custom table through ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-custom-table-through-abap/m-p/3168659#M753927</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 have a general question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do we update the custom table through ABAP. Like any database, just using update statement, we can update custom table. Because I need to do some update to the custom table using ABAP. Please let me know the procedure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 23:53:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-custom-table-through-abap/m-p/3168659#M753927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-06T23:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: update custom table through ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-custom-table-through-abap/m-p/3168660#M753928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Deepan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need to get the data from some other tables and have to update the ztable then you can go with program by writing Insert/Modify/Update statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise just maintain the table maintanance generator and Create the entries from SM30 Transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 00:29:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-custom-table-through-abap/m-p/3168660#M753928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T00:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: update custom table through ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-custom-table-through-abap/m-p/3168661#M753929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may do it like this :&lt;/P&gt;&lt;P&gt;UPDATE ztable SET column_a = 'abc' &lt;/P&gt;&lt;P&gt;                   column_b = column_b + '55'  &lt;/P&gt;&lt;P&gt;                   WHERE column_a = 'test'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 02:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-custom-table-through-abap/m-p/3168661#M753929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-07T02:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: update custom table through ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-custom-table-through-abap/m-p/3168662#M753930</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;Yes.You can use update/modify statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE dbtab SET f1 = value1 where condition.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE dbtab FROM TABLE itab. &lt;/P&gt;&lt;P&gt;Here from itab internal table, you can update the ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if you are not sure wherether the particular record exists in ztable,you can use modify statement. It will insert the record if it is not there already.If record exists in ztable,it will update the record.&lt;/P&gt;&lt;P&gt;Modify dbtab from table itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Dec 2007 02:32:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-custom-table-through-abap/m-p/3168662#M753930</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-12-07T02:32:32Z</dc:date>
    </item>
  </channel>
</rss>

