"Using the CL_ABAP_TIMEFM class, you can perform conversions with external "and internal representations of a time, e.g. conversion of a time in a data "object of type string to type t and vice versa. Multiple methods are available, "of which two are covered in the example. For more information, refer to the "class documentation. DATA(time4conversion) = CONV t( '123456' ). DATA conv_time_str TYPE string. DATA conv_time_t TYPE t. "Conversion of t (internal) to string (external time format) TRY. cl_abap_timefm=>conv_time_int_to_ext( EXPORTING time_int = time4conversion without_seconds = abap_false format_according_to = cl_abap_timefm=>iso "hh:mm:ss IMPORTING time_ext = conv_time_str ). "12:34:56 CATCH cx_parameter_invalid_range. ENDTRY. "Conversion of string (external) to t (internal time format) TRY. cl_abap_timefm=>conv_time_ext_to_int( EXPORTING time_ext = conv_time_str IMPORTING time_int = conv_time_t ). "123456 CATCH cx_abap_timefm_invalid. ENDTRY.
Serkan AKKAVAK Computer Engineer BSc Head of SAP & Software Department Contact : serkurumsal@yandex.com

0 Comments