You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I find two bugs in this new version.
the first one is : don't support asia language such as chinese. and the bug is because the class ZCL_EXCEL_WRITER_2007 method RENDER_XML_DOCUMENT . the follow code skip asia language character. It's FINE if block these code.
ENDTRY.
the second one is : If an internal table have integer field. a short dump will display be bug is because class ZCL_EXCEL_WORKSHEET method SET_CELL
CASE lv_value_type.
WHEN cl_abap_typedescr=>typekind_int1 OR cl_abap_typedescr=>typekind_int1 OR cl_abap_typedescr=>typekind_int2
OR <fs_typekind_int8>. "Allow INT8 types columns
changed to
CASE lv_value_type.
WHEN cl_abap_typedescr=>typekind_int OR cl_abap_typedescr=>typekind_int1 OR cl_abap_typedescr=>typekind_int2
OR <fs_typekind_int8>. "Allow INT8 types columns
The text was updated successfully, but these errors were encountered:
I find two bugs in this new version.
the first one is : don't support asia language such as chinese. and the bug is because the class ZCL_EXCEL_WRITER_2007 method RENDER_XML_DOCUMENT . the follow code skip asia language character. It's FINE if block these code.
the second one is : If an internal table have integer field. a short dump will display be bug is because class ZCL_EXCEL_WORKSHEET method SET_CELL
CASE lv_value_type.
WHEN cl_abap_typedescr=>typekind_int1 OR cl_abap_typedescr=>typekind_int1 OR cl_abap_typedescr=>typekind_int2
OR <fs_typekind_int8>. "Allow INT8 types columns
changed to
CASE lv_value_type.
WHEN cl_abap_typedescr=>typekind_int OR cl_abap_typedescr=>typekind_int1 OR cl_abap_typedescr=>typekind_int2
OR <fs_typekind_int8>. "Allow INT8 types columns
The text was updated successfully, but these errors were encountered: