mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 11:16:14 +08:00
Fix default cell format to not use UTCLONG (#1262)
Fix #1261 Co-authored-by: sandraros <sandra.rossi@gmail.com>
This commit is contained in:
parent
3d2926c5a6
commit
b5f5d11e1c
|
@ -709,7 +709,8 @@ CLASS zcl_excel_worksheet DEFINITION
|
|||
*"* do not include other source files here!!!
|
||||
TYPES ty_table_settings TYPE STANDARD TABLE OF zexcel_s_table_settings WITH DEFAULT KEY.
|
||||
|
||||
CLASS-DATA typekind_utclong TYPE abap_typekind.
|
||||
CONSTANTS typekind_utclong TYPE abap_typekind VALUE 'p'.
|
||||
|
||||
CLASS-DATA variable_utclong TYPE REF TO data.
|
||||
|
||||
DATA active_cell TYPE zexcel_s_cell_data .
|
||||
|
@ -2037,7 +2038,6 @@ CLASS zcl_excel_worksheet IMPLEMENTATION.
|
|||
|
||||
ASSIGN ('CL_ABAP_TYPEDESCR=>TYPEKIND_UTCLONG') TO <lv_typekind>.
|
||||
IF sy-subrc = 0.
|
||||
typekind_utclong = <lv_typekind>.
|
||||
CALL METHOD cl_abap_elemdescr=>('GET_UTCLONG') RECEIVING p_result = lo_rtti.
|
||||
CREATE DATA variable_utclong TYPE HANDLE lo_rtti.
|
||||
ENDIF.
|
||||
|
|
Loading…
Reference in New Issue
Block a user