SAP CONVERT TIME STAMP - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for CONVERT_TIME_STAMP

CONVERT TIME STAMP

ABAP Reference
ABAP Code Snippet


ABAP Syntax CONVERT { TIME STAMP time_stamp TIME ZONE tz

INTO [DATE dat] [TIME tim] [DAYLIGHT SAVING TIME dst] }
| { DATE dat [TIME tim [DAYLIGHT SAVING TIME dst]]
INTO TIME STAMP time_stamp TIME ZONE tz }.
ABAP Code Snippet

What does it do? Either converts a date and time specification into dat and tim with reference to a tz time zone in a UTC time stamp and returns the result in time_stamp, or it converts a UTC time stamp in time_stamp into date and time specifications and returns the results in dat and tim.

ABAP Addition DAYLIGHT SAVING TIME dst
For CONVERT DATE, specifies whether the time specification is in the summer time. For CONVERT TIME STAMP, specifies whether the time stamp is in the summer time.

Return to menu