‎2006 Sep 20 2:12 PM
Hello Experts,
Please explain me about UTC ( Universal coordinated Time)
I am in CET ( central european time).
Which functional module converts the CET into UTC.
Thanx in Advance.
Regards,
Johnn.
‎2006 Sep 20 2:18 PM
try out with this FM
RSSM_CONV_TIME_LOCAL_TO_UTC
Regards
srikanth
‎2006 Sep 20 2:19 PM
hi jhon,
try this.
first get the timezone of that country
CALL FUNCTION 'TZON_LOCATION_TIMEZONE'
EXPORTING
if_country = p_it_userid-zcountry
IMPORTING
ef_timezone = l_tzone
EXCEPTIONS
no_timezone_found = 1
OTHERS = 2.
rgds
anver.
if helped mark points
‎2006 Sep 20 2:30 PM
hi,
u can use this FM also.
STU3_ALERTS_CONV_LOCAL_2_UTC
regards
anver
pls mark points to helpful answers
‎2006 Sep 20 2:32 PM
<b>UTC</b>
Coordinated Universal Time (UTC) is a high-precision atomic time standard. UTC has uniform seconds defined by International Atomic Time (TAI), with leap seconds announced at irregular intervals to compensate for the earth's slowing rotation, and other discrepancies. The leap seconds allow UTC to closely track Universal Time (UT), which is a time standard based on the earth's angular rotation, rather than a uniform passage of seconds.
Time zones around the world are expressed as positive or negative offsets from UTC. In this role, UTC is also referred to as Zulu time (Z).
U can check the FM
S391_GET_GREENWICH_TIME to understand the calculation
‎2006 Sep 20 4:32 PM