From 4d33c4e20ea334ffed3cc77cac91f6c05cd38fdf Mon Sep 17 00:00:00 2001 From: Matthias <134483348+oberhm@users.noreply.github.com> Date: Sat, 30 Sep 2023 14:07:30 +0200 Subject: [PATCH] Fix CSV Export with date and time in excel format (#1140) * solving issue #1134 * changes after testing * CSV export - Dateretention of cellstyles - fix issue #1134 * undo previous changes for issue #1134 --- src/zcl_excel_writer_csv.clas.abap | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/zcl_excel_writer_csv.clas.abap b/src/zcl_excel_writer_csv.clas.abap index 5c1bd82..23f6853 100644 --- a/src/zcl_excel_writer_csv.clas.abap +++ b/src/zcl_excel_writer_csv.clas.abap @@ -60,6 +60,10 @@ CLASS zcl_excel_writer_csv IMPLEMENTATION. * .csv format with ; delimiter +* Start of insertion # issue 1134 - Dateretention of cellstyles(issue #139) + me->excel->add_static_styles( ). +* End of insertion # issue 1134 - Dateretention of cellstyles(issue #139) + ep_excel = me->create_csv( ). ENDMETHOD.