<?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 TZON_GET_OFFSET in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tzon-get-offset/m-p/8325915#M1637620</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;The function module TZON_GET_OFFSET is throwing a short dump when the input date is 20111030 and time 020305 and timezone is AUSVIC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover the job scheduled for RSCONN01 is having a message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Job started&lt;/P&gt;&lt;P&gt;Step 001 started (program RSCONN01, variant SAP&amp;amp;CONNECTINT, user ID ABCD)&lt;/P&gt;&lt;P&gt;Start send process SENDMAIL on server upmysap1 in client 000.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Starting send process locally: Package 1; number: 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ABAP/4 processor: RAISE_EXCEPTION&lt;/P&gt;&lt;P&gt;Job cancelled&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 30 Oct 2011 08:08:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-10-30T08:08:06Z</dc:date>
    <item>
      <title>TZON_GET_OFFSET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tzon-get-offset/m-p/8325915#M1637620</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;The function module TZON_GET_OFFSET is throwing a short dump when the input date is 20111030 and time 020305 and timezone is AUSVIC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover the job scheduled for RSCONN01 is having a message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Job started&lt;/P&gt;&lt;P&gt;Step 001 started (program RSCONN01, variant SAP&amp;amp;CONNECTINT, user ID ABCD)&lt;/P&gt;&lt;P&gt;Start send process SENDMAIL on server upmysap1 in client 000.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Starting send process locally: Package 1; number: 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ABAP/4 processor: RAISE_EXCEPTION&lt;/P&gt;&lt;P&gt;Job cancelled&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Oct 2011 08:08:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tzon-get-offset/m-p/8325915#M1637620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-30T08:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: TZON_GET_OFFSET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tzon-get-offset/m-p/8325916#M1637621</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;It might have a CONVERSION ERROR.&lt;/P&gt;&lt;P&gt;Check the format of the data being passed, it must be compatible. Date should be in DD.MM.YYYY format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Oct 2011 13:07:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tzon-get-offset/m-p/8325916#M1637621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-31T13:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: TZON_GET_OFFSET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tzon-get-offset/m-p/8325917#M1637622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sailija,&lt;/P&gt;&lt;P&gt;Please check the input paramaters once&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'TZON_GET_OFFSET' "
  EXPORTING
    if_timezone =               " timezone      Time Zone
    if_local_date =             " dats          Field of Type DATS
    if_local_time =             " tims          Field of type TIMS
  IMPORTING
    ef_utcdiff =                " tznutcdiff    Difference of time zone from UTC (w/o Summer time)
    ef_utcsign =                " tznutcsign    Difference of time zone from UTC (w/o Summer time)
    ef_is_in_dst =              " xflag
  EXCEPTIONS
    CONVERSION_ERROR = 1        "               Error During Translation
    .  "  TZON_GET_OFFSET
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;koolspy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Oct 2011 13:36:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tzon-get-offset/m-p/8325917#M1637622</guid>
      <dc:creator>koolspy_ultimate</dc:creator>
      <dc:date>2011-10-31T13:36:20Z</dc:date>
    </item>
  </channel>
</rss>

