Application Development and Automation 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: 
Read only

Convert Date and Time into UTC format Timestamp

Former Member
0 Likes
5,630

HI Experts,

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

Is there any function module?

Thanks,

Vik

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
Read only

former_member156446
Active Contributor
0 Likes
1,517
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

Read only

Former Member
0 Likes
1,517

Jusr press F1 on CONVERT DATE