From ec32e7ade487e53298ed2fdad64a48c6d06b0c64 Mon Sep 17 00:00:00 2001 From: sandraros <34005250+sandraros@users.noreply.github.com> Date: Sat, 30 Sep 2023 11:17:07 +0200 Subject: [PATCH 1/3] ZCX_EXCEL diff due to new abapGit (#1141) Pull of latest abap2xlsx via latest abapGit still shows a diff on ZCX_EXCEL. The abapGit serialization adds an extra block. --- src/zcx_excel.clas.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/zcx_excel.clas.xml b/src/zcx_excel.clas.xml index 5bbc56e..23ddcb3 100644 --- a/src/zcx_excel.clas.xml +++ b/src/zcx_excel.clas.xml @@ -42,6 +42,14 @@ 0001 + + + LIMU + CPUB + ZCX_EXCEL + 0001 + + CONSTRUCTOR 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 2/3] 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. From 2f970b82a1f6c2eafe554ac8bee852115fdec4bb Mon Sep 17 00:00:00 2001 From: Lars Hvam Date: Sun, 1 Oct 2023 17:33:07 +0200 Subject: [PATCH 3/3] abaplint: update msag_consistency rule settings (#1142) to not require numeric parameters --- abaplint.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/abaplint.json b/abaplint.json index 3b1b9b7..cd2a0bd 100644 --- a/abaplint.json +++ b/abaplint.json @@ -136,7 +136,9 @@ "local_class_naming": false, "main_file_contents": true, "message_exists": false, - "msag_consistency": true, + "msag_consistency": { + "numericParamters": false + }, "newline_between_methods": false, "no_public_attributes": false, "object_naming": {