<?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: Updating Database Table Using Module POOL. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table-using-module-pool/m-p/4945653#M1153359</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if it isstandard table (like vbak is to be updated) then do bdc program for that and attach that bdc program below the save button..&lt;/P&gt;&lt;P&gt; &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;if it is ztable then simply use modify statement......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Dec 2008 10:27:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-10T10:27:24Z</dc:date>
    <item>
      <title>Updating Database Table Using Module POOL.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table-using-module-pool/m-p/4945650#M1153356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I want to update a &lt;STRONG&gt;database table using module pool&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;In screen the value will be given to be updated in database after pressing SAVE button.&lt;/P&gt;&lt;P&gt;Please suggest me how to do that.&lt;/P&gt;&lt;P&gt;here I'm &lt;STRONG&gt;using table control.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Biswajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 09:57:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table-using-module-pool/m-p/4945650#M1153356</guid>
      <dc:creator>biswajit_das6</dc:creator>
      <dc:date>2008-12-10T09:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Database Table Using Module POOL.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table-using-module-pool/m-p/4945651#M1153357</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 you transfer the data from screen(table control) to the program where your itab is declared&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case ok_code.&lt;/P&gt;&lt;P&gt;when 'SAVE'.&lt;/P&gt;&lt;P&gt;MODIFY DBTAB from table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 09:59:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table-using-module-pool/m-p/4945651#M1153357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-10T09:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Database Table Using Module POOL.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table-using-module-pool/m-p/4945652#M1153358</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;   WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Using SELECT query to fetch all the fields and move it to a itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  MODIFY DBTABLE FROM TABLE ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Internal table should be of the same structure as Database table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 10:24:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table-using-module-pool/m-p/4945652#M1153358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-10T10:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Database Table Using Module POOL.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table-using-module-pool/m-p/4945653#M1153359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if it isstandard table (like vbak is to be updated) then do bdc program for that and attach that bdc program below the save button..&lt;/P&gt;&lt;P&gt; &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;if it is ztable then simply use modify statement......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 10:27:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table-using-module-pool/m-p/4945653#M1153359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-10T10:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Updating Database Table Using Module POOL.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table-using-module-pool/m-p/4945654#M1153360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is a table control table. Values coming here can be changed and if the change on value made then it needs to be updated in DATABASE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Dec 2008 13:16:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table-using-module-pool/m-p/4945654#M1153360</guid>
      <dc:creator>biswajit_das6</dc:creator>
      <dc:date>2008-12-10T13:16:38Z</dc:date>
    </item>
  </channel>
</rss>

