<?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 Timezone to GMT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/timezone-to-gmt/m-p/4099591#M980298</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me converting UTC time to GMT time..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to find the time zone?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Jul 2008 13:12:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-10T13:12:00Z</dc:date>
    <item>
      <title>Timezone to GMT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timezone-to-gmt/m-p/4099591#M980298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me converting UTC time to GMT time..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to find the time zone?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2008 13:12:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timezone-to-gmt/m-p/4099591#M980298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-10T13:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone to GMT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timezone-to-gmt/m-p/4099592#M980299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://www.s001.org/ABAP-Hlp/abentime-stamp-general.htm" target="test_blank"&gt;http://www.s001.org/ABAP-Hlp/abentime-stamp-general.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://searchsap.techtarget.com/tip/0,289483,sid21_gci826364,00.html" target="test_blank"&gt;http://searchsap.techtarget.com/tip/0,289483,sid21_gci826364,00.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Santosh Kapse on Jul 10, 2008 3:22 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2008 13:20:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timezone-to-gmt/m-p/4099592#M980299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-10T13:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone to GMT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timezone-to-gmt/m-p/4099593#M980300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use FM :&lt;/P&gt;&lt;P&gt;FITP_CONVERT_LOCAL_TIME_GMT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2008 13:32:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timezone-to-gmt/m-p/4099593#M980300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-10T13:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone to GMT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timezone-to-gmt/m-p/4099594#M980301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikram D,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to change system TimeZone...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use Tcode STZAC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Might be u need to contact your basis person for the authorization for this T-Code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or if u need it to be done in ABAP then try this way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: 
        l_datum LIKE sy-datum,       " Date
        l_ctime LIKE sy-uzeit,       " Current time
        l_tstmp TYPE timestamp,      " Time Stamp        
 
l_datum = sy-datum.
l_ctime = sy-uzeit.
CONVERT DATE l_datum
              TIME l_ctime
         INTO TIME STAMP l_tstmp TIME ZONE sy-zonlo.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also see below FMs..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LTRM_TIMESTAMP_CONVERT_INTO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STU3_ALERTS_CONV_UTC_2_LOCAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TZON_CHECK_TIMEZONE&lt;/P&gt;&lt;P&gt;TZON_GET_TIMEZONE_TEXT&lt;/P&gt;&lt;P&gt;TZON_GET_USER_TIMEZONE&lt;/P&gt;&lt;P&gt;TZ_LOCATION_TIMEZONE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope it will solve your problem..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2008 13:41:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timezone-to-gmt/m-p/4099594#M980301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-10T13:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Timezone to GMT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/timezone-to-gmt/m-p/4099595#M980302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikram.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have come across which I would like to share:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[ Concept related to UTC to GMT conversion|http://www.dxing.com/utcgmt.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Related System fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-DATUT &lt;/P&gt;&lt;P&gt; Global date related to UTC (GMT).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIMUT &lt;/P&gt;&lt;P&gt; Global time related to UTC (GMT) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TSTUT &lt;/P&gt;&lt;P&gt; Timestamp (date and time) related to UTC (GMT) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TZONE &lt;/P&gt;&lt;P&gt; Time difference from 'Greenwich Mean Time' (UTC) in seconds &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck &amp;amp; Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Harsh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2008 13:59:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/timezone-to-gmt/m-p/4099595#M980302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-10T13:59:16Z</dc:date>
    </item>
  </channel>
</rss>

