<?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: TIME STAMP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/1082911#M98374</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got this from help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT - Converting Timestamps&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONVERT - Converting Timestamps

              Variants:
              1. CONVERT TIME STAMP tst TIME ZONE tz INTO DATE d TIME t.
              2. CONVERT DATE d TIME t INTO TIME STAMP tst TIME ZONE tz.

Effect        Converts the timestamp tst into date d or time t based on the
              time zone tz.

              tst must have the type P(8) (short form) or P(11) with 7
              decimal places (long form). tz must have the type C(6). The
              ABAP Dictionary contains the data elements TIMESTAMP,
              TIMESTAMPL, and TIMEZONE, which you can use in DATA ... TYPE
              ... statements to declare tst and tz. There are no strict type
              checks for the date d or time t. If you specify a variable
              that does not have type T, the system uses the type conversion
              rules applied in the MOVE statement.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As mentioned above, the data type of GS_TEST-TIMESTAMP_FROM should be p.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Nov 2005 08:47:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-11-03T08:47:11Z</dc:date>
    <item>
      <title>TIME STAMP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/1082909#M98372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Program:&lt;/P&gt;&lt;P&gt;CONVERT TIME STAMP gs_test-timestamp_from &lt;/P&gt;&lt;P&gt;TIME ZONE 'UTC'&lt;/P&gt;&lt;P&gt;INTO DATE gv_price_date TIME gv_price_time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wrong message: &lt;/P&gt;&lt;P&gt;The line type of "GS_TEST-TIMESTAMP_FROM" must be compatible	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody how knows what I should do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2005 08:41:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/1082909#M98372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-03T08:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: TIME STAMP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/1082910#M98373</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;gs_test-timestamp_from must be type timestamp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;look at this example&lt;/P&gt;&lt;P&gt;DATA: &lt;/P&gt;&lt;P&gt;  tstamp  type timestamp, &lt;/P&gt;&lt;P&gt;  d       TYPE D VALUE '19971224', &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  t       TYPE T VALUE '235500'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET COUNTRY 'US'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT DATE d TIME t INTO &lt;/P&gt;&lt;P&gt;        TIME STAMP tstamp TIME ZONE 'UTC+12'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                        " tstamp :    19971224115500 &lt;/P&gt;&lt;P&gt;                        "          (12/24/1997 11:55:00) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT TIME STAMP tstamp TIME ZONE 'UTC+12' INTO &lt;/P&gt;&lt;P&gt;        DATE d TIME t. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2005 08:46:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/1082910#M98373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-03T08:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: TIME STAMP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/1082911#M98374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got this from help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT - Converting Timestamps&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONVERT - Converting Timestamps

              Variants:
              1. CONVERT TIME STAMP tst TIME ZONE tz INTO DATE d TIME t.
              2. CONVERT DATE d TIME t INTO TIME STAMP tst TIME ZONE tz.

Effect        Converts the timestamp tst into date d or time t based on the
              time zone tz.

              tst must have the type P(8) (short form) or P(11) with 7
              decimal places (long form). tz must have the type C(6). The
              ABAP Dictionary contains the data elements TIMESTAMP,
              TIMESTAMPL, and TIMEZONE, which you can use in DATA ... TYPE
              ... statements to declare tst and tz. There are no strict type
              checks for the date d or time t. If you specify a variable
              that does not have type T, the system uses the type conversion
              rules applied in the MOVE statement.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As mentioned above, the data type of GS_TEST-TIMESTAMP_FROM should be p.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2005 08:47:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/1082911#M98374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-03T08:47:11Z</dc:date>
    </item>
  </channel>
</rss>

