2008 Oct 14 3:37 PM
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
2008 Oct 14 3:41 PM
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
2008 Oct 14 3:42 PM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |