Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Convert Date and Time into UTC format Timestamp

Former Member
0 Kudos

HI Experts,

Can anyone helpme in converting the date and time into UTC format timestamp?

Is there any function module?

Thanks,

Vik

2 REPLIES 2

former_member156446
Active Contributor
0 Kudos
DATA: time_stamp TYPE timestamp,
      dat        TYPE d,
      tz         TYPE ttzz-tzone,
      dst        TYPE c LENGTH 1.
 
tz = 'BRAZIL'.
time_stamp = 20030309033000.
CONVERT TIME STAMP time_stamp TIME ZONE tz
        INTO DATE dat TIME tim DAYLIGHT SAVING TIME dst.
WRITE: /(10) dat, (8) tim, dst.
 
time_stamp = 20030309043000.
CONVERT TIME STAMP time_stamp TIME ZONE tz
        INTO DATE dat TIME tim DAYLIGHT SAVING TIME dst.
WRITE: /(10) dat, (8) tim, dst.

List of FM's:

STU3_ALERTS_CONV_LOCAL_2_UTC

OIRA_DATE_UTC_CONVERT

FM S_DB_INFORMIX_UTC_TO_LOCALTIME

former_member188685
Active Contributor
0 Kudos

Jusr press F1 on CONVERT DATE