GET TIME STAMP FIELD lv_timestampl.
lv_str_timestampl = lv_timestampl.
cl_pco_utility=>convert_abap_timestamp_to_java(
EXPORTING
iv_date = CONV #( lv_str_timestampl(8) )
iv_time = CONV #( lv_str_timestampl+8(6) )
iv_msec = CONV #( lv_str_timestampl+15(3) )
IMPORTING
ev_timestamp = lv_java_timestamp
).
ABAP TIMESTAMP转化为JAVA TIMESTAMP
最新推荐文章于 2025-02-13 11:11:06 发布