From 2328ae841cec1a1f645727eeb036c1e77c0383fc Mon Sep 17 00:00:00 2001 From: oblomov-dev <102328295+oblomov-dev@users.noreply.github.com> Date: Sun, 6 Oct 2024 08:58:24 +0200 Subject: [PATCH] fix-abap-api-exception (#1491) --- src/01/00/02/z2ui5_cx_abap_api.clas.abap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/01/00/02/z2ui5_cx_abap_api.clas.abap b/src/01/00/02/z2ui5_cx_abap_api.clas.abap index b41e8f21..d478e1a0 100644 --- a/src/01/00/02/z2ui5_cx_abap_api.clas.abap +++ b/src/01/00/02/z2ui5_cx_abap_api.clas.abap @@ -9,7 +9,7 @@ CLASS z2ui5_cx_abap_api DEFINITION DATA: BEGIN OF ms_error, x_root TYPE REF TO cx_root, - uuid TYPE string, +* uuid TYPE string, text TYPE string, END OF ms_error . @@ -41,7 +41,7 @@ CLASS z2ui5_cx_abap_api IMPLEMENTATION. CATCH cx_root. ms_error-text = val. ENDTRY. - ms_error-uuid = z2ui5_cl_util=>uuid_get_c32( ). +* ms_error-uuid = z2ui5_cl_util=>uuid_get_c32( ). ENDMETHOD.