<?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 the database table using tabstrip in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-the-database-table-using-tabstrip/m-p/3747327#M901621</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have an OK_CODE on the 100 screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE USER_COMMAND_0100 INPUT.

CASE ????.  " &amp;lt;=== Missing
  WHEN 'SAVE'.
    INSERT HRP1001.
ENDCASE.  " &amp;lt;=== Missing

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you defined the button with an Fuction Code?  Is that FC = 'SAVE' ?  Save is usually set in the GUI Status, but it is not limited to just one of this value.  You could use SAVE in multiple Event Objects.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 May 2008 12:49:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-06T12:49:31Z</dc:date>
    <item>
      <title>Update the database table using tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-the-database-table-using-tabstrip/m-p/3747323#M901617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guy's,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am struck up at Update the database table using tabstrip control.( Created one push button name save, using this button trying to update the database table)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please friends help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Sai.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 11:59:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-the-database-table-using-tabstrip/m-p/3747323#M901617</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T11:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: Update the database table using tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-the-database-table-using-tabstrip/m-p/3747324#M901618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the  issue you are facing? Also, please paste the code that is being triggered when you are pressing the SAVE button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Sid&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 12:13:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-the-database-table-using-tabstrip/m-p/3747324#M901618</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T12:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Update the database table using tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-the-database-table-using-tabstrip/m-p/3747325#M901619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sid,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE STATUS_0100 OUTPUT.&lt;/P&gt;&lt;P&gt;   INSERT INTO HRP1001  values  wa_p2.---it is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0100 INPUT.&lt;/P&gt;&lt;P&gt; WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;    INSERT HRP1001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the code where i did the mistake.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Sai.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 12:22:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-the-database-table-using-tabstrip/m-p/3747325#M901619</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T12:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Update the database table using tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-the-database-table-using-tabstrip/m-p/3747326#M901620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;plz check the structure of wa_p2 is same as of db table fields, secondly are you inserting a new record( For new record use INSERT) or updating an existing record (Then use UPDATE).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you specify a non-table-type work area wa, a row is created from its contents for insertion in the database table. The content of the row to be inserted is taken from the work area wa without taking its data type into consideration and without conversion from left to right according to the structure of the database table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is a type mismatch perhaps its being set to initial values.. plz check your db table also for the values after you press enter. Or debug your code to see what value is being transfered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Sid&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 12:42:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-the-database-table-using-tabstrip/m-p/3747326#M901620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T12:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Update the database table using tabstrip</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-the-database-table-using-tabstrip/m-p/3747327#M901621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have an OK_CODE on the 100 screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE USER_COMMAND_0100 INPUT.

CASE ????.  " &amp;lt;=== Missing
  WHEN 'SAVE'.
    INSERT HRP1001.
ENDCASE.  " &amp;lt;=== Missing

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you defined the button with an Fuction Code?  Is that FC = 'SAVE' ?  Save is usually set in the GUI Status, but it is not limited to just one of this value.  You could use SAVE in multiple Event Objects.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 12:49:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-the-database-table-using-tabstrip/m-p/3747327#M901621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T12:49:31Z</dc:date>
    </item>
  </channel>
</rss>

