fix-abap-api-exception (#1491)

This commit is contained in:
oblomov-dev 2024-10-06 08:58:24 +02:00 committed by GitHub
parent 1012283880
commit 2328ae841c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,7 @@ CLASS z2ui5_cx_abap_api DEFINITION
DATA: DATA:
BEGIN OF ms_error, BEGIN OF ms_error,
x_root TYPE REF TO cx_root, x_root TYPE REF TO cx_root,
uuid TYPE string, * uuid TYPE string,
text TYPE string, text TYPE string,
END OF ms_error . END OF ms_error .
@ -41,7 +41,7 @@ CLASS z2ui5_cx_abap_api IMPLEMENTATION.
CATCH cx_root. CATCH cx_root.
ms_error-text = val. ms_error-text = val.
ENDTRY. ENDTRY.
ms_error-uuid = z2ui5_cl_util=>uuid_get_c32( ). * ms_error-uuid = z2ui5_cl_util=>uuid_get_c32( ).
ENDMETHOD. ENDMETHOD.