From 76f14105dbf8b35032ad5baeedeeedd1c958ac22 Mon Sep 17 00:00:00 2001 From: Arno <32099906+aspeitkamp@users.noreply.github.com> Date: Sat, 22 Jan 2022 15:07:49 +0100 Subject: [PATCH] zcl_excel_converter_salv_table exception handling (#974) Fixes shortdump in ZDEMO_EXCEL32 and custom programs if the ALV bind functionality is being used. The dumps are caused by the missing handling of the exception CX_SALV_BS_SC_RUNTIME_INFO. --- src/not_cloud/zcl_excel_converter_salv_table.clas.abap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/not_cloud/zcl_excel_converter_salv_table.clas.abap b/src/not_cloud/zcl_excel_converter_salv_table.clas.abap index cbc5433..3f0f899 100644 --- a/src/not_cloud/zcl_excel_converter_salv_table.clas.abap +++ b/src/not_cloud/zcl_excel_converter_salv_table.clas.abap @@ -254,7 +254,7 @@ CLASS zcl_excel_converter_salv_table IMPLEMENTATION. IF = abap_false AND = abap_true. rv_result = abap_true. ENDIF. - CATCH cx_sy_create_data_error cx_sy_dyn_call_error. + CATCH cx_sy_create_data_error cx_sy_dyn_call_error cx_salv_bs_sc_runtime_info. rv_result = abap_false. ENDTRY.