<?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 updating database table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table/m-p/1865515#M364918</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   i want to sent some data to standard table TCURR using INSERT statement.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;insert tcurr from table tt_tcurr.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tha data is getting updated but the problem is this table stores date in inverted format.&lt;/P&gt;&lt;P&gt;In what format i should send date, in inverted format or normal date format or how&lt;/P&gt;&lt;P&gt;Please suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ahmed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 06 Jan 2007 07:31:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-06T07:31:48Z</dc:date>
    <item>
      <title>updating database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table/m-p/1865515#M364918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   i want to sent some data to standard table TCURR using INSERT statement.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;insert tcurr from table tt_tcurr.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tha data is getting updated but the problem is this table stores date in inverted format.&lt;/P&gt;&lt;P&gt;In what format i should send date, in inverted format or normal date format or how&lt;/P&gt;&lt;P&gt;Please suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ahmed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jan 2007 07:31:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table/m-p/1865515#M364918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-06T07:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: updating database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table/m-p/1865516#M364919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to use this conversion routine for that field in Tcurr table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CONVERSION_EXIT_INVDT_INPUT.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_INVDT_OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u please tell us what the business requirement is and y u r updating tcurr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass the date to this converison routine and get the output store into ur internal table this will be in the form of a number and now update the tcurr.. &lt;/P&gt;&lt;P&gt; i hope this will do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jan 2007 07:39:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table/m-p/1865516#M364919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-06T07:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: updating database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table/m-p/1865517#M364920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi execute the code and check the output .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : date like sy-datum,
       val like sy-datum,
       datum(8) type n .
date = sy-datum.

concatenate date+4(2) date+6(2) date+0(4) into val.  "--&amp;gt;input is MMDDYYYY

CALL FUNCTION 'CONVERSION_EXIT_INVDT_INPUT'
  EXPORTING
  input          = val
 IMPORTING
   OUTPUT        = datum. "is Tcurr format compatible

write:/ datum.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  "--&amp;gt; store this into ur internal table and &lt;/P&gt;&lt;P&gt;insert in to Tcurr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps &lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jan 2007 09:08:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table/m-p/1865517#M364920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-06T09:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: updating database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table/m-p/1865518#M364921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;i&amp;gt;pls dont open multiple threads&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jan 2007 09:10:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/updating-database-table/m-p/1865518#M364921</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2007-01-06T09:10:23Z</dc:date>
    </item>
  </channel>
</rss>

