<?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 conversion not working in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162054#M1370259</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you tell us which table field it is if standard table and if not, please let us know the data element used for your custom field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Sep 2009 18:05:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-28T18:05:25Z</dc:date>
    <item>
      <title>Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162042#M1370247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have to convert time/date picked from table to user's time zone .&lt;/P&gt;&lt;P&gt;Tried IB_CONVERT_INTO_TIMESTAMP (Tried others too) .&lt;/P&gt;&lt;P&gt;Converted the time to GMTUK (+/- 0) and then to sy-zonlo.&lt;/P&gt;&lt;P&gt;But nothing seems to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2009 15:25:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162042#M1370247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-28T15:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162043#M1370248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    convert date l_date time l_time daylight saving time 'X'&lt;/P&gt;&lt;P&gt;        into time stamp result-timestamp time zone sy-zonlo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2009 15:30:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162043#M1370248</guid>
      <dc:creator>former_member191735</dc:creator>
      <dc:date>2009-09-28T15:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162044#M1370249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've just tried this and it works, what isn't working for you?  The code which does the work is this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    CONVERT DATE i_datlo TIME i_timlo
      INTO TIME STAMP e_timestamp TIME ZONE l_tzone.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you can insert this into your program directly?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2009 15:35:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162044#M1370249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-28T15:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162045#M1370250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: Time in user's Zone is 12:00:00&lt;/P&gt;&lt;P&gt;      In table its stored as 11:00:00        &lt;/P&gt;&lt;P&gt;      When fetched back it should show 12:00:00, but its showing 11:00:00 &lt;/P&gt;&lt;P&gt;      if i use the time conversion before showing, it shows 10:00:00&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2009 16:29:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162045#M1370250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-28T16:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162046#M1370251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use time zone if the server and client is not at same time zone. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement that i gave worked fine for me and it is a real time code that i am using in one of my program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2009 16:30:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162046#M1370251</guid>
      <dc:creator>former_member191735</dc:creator>
      <dc:date>2009-09-28T16:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162047#M1370252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually i dont hitnk there's a prob with conversion .. &lt;/P&gt;&lt;P&gt;when i change my time zone and see the output .. i get the correct time display .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but why is the user (with same time zone) not seeing the correct time ? I am checking SU3, should i be checking settings somewhere else ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2009 16:57:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162047#M1370252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-28T16:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162048#M1370253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the user directly logged into SAP? Did the user try logging off and coming back in again?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2009 17:01:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162048#M1370253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-28T17:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162049#M1370254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well , user hasnt changed his time zone , I did. I am already gettign correct time in both the zones. &lt;/P&gt;&lt;P&gt;User is not getting correct time in his zone.&lt;/P&gt;&lt;P&gt;User data is converted before being saved (-1)&lt;/P&gt;&lt;P&gt;When he fetches back , it should be converted again (+1) for correct time dispaly , but conversion makes it (-2) .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2009 17:05:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162049#M1370254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-28T17:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162050#M1370255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is your actual question? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that statement/FM not working or problem with displaying the time zone? Please close the thread if you got answer and open up another. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Be clear on what you are asking for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2009 17:09:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162050#M1370255</guid>
      <dc:creator>former_member191735</dc:creator>
      <dc:date>2009-09-28T17:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162051#M1370256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what i meant was for me correct data is displayed without calling any conversion in both the zones , but for the user it isnt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;even when i try to use conversion , it doesnt work .. in the sense that it doesnt display the correct converted values !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2009 17:17:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162051#M1370256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-28T17:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162052#M1370257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you both on the same server and executing this the same way(online vs background)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2009 17:29:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162052#M1370257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-28T17:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162053#M1370258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes , same server . Online.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2009 17:59:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162053#M1370258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-28T17:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162054#M1370259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you tell us which table field it is if standard table and if not, please let us know the data element used for your custom field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2009 18:05:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162054#M1370259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-28T18:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162055#M1370260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What was it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Sep 2009 13:48:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162055#M1370260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-29T13:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: Time conversion not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162056#M1370261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; What was it?&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generosity in awarding points ... Lolz &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Sep 2009 13:55:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-conversion-not-working/m-p/6162056#M1370261</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-09-29T13:55:05Z</dc:date>
    </item>
  </channel>
</rss>

