From 3e5f73d5556b0a5ddb126eb5f2289c51c9a7b02f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Mil=C3=A1n?= <36721657+francisco-milan@users.noreply.github.com> Date: Wed, 25 Sep 2024 00:48:48 -0600 Subject: [PATCH] Add "enableformattedtext" to message_strip method. (#1451) * Add "enableformattedtext" to message_strip method. * Add "enableformattedtext" to message_strip method2 * Add "enableformattedtext" to message_strip method3 * Add "enableformattedtext" to message_strip method4 --- src/02/z2ui5_cl_xml_view.clas.abap | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/02/z2ui5_cl_xml_view.clas.abap b/src/02/z2ui5_cl_xml_view.clas.abap index 7180eed5..d6cd759c 100644 --- a/src/02/z2ui5_cl_xml_view.clas.abap +++ b/src/02/z2ui5_cl_xml_view.clas.abap @@ -187,15 +187,16 @@ CLASS z2ui5_cl_xml_view DEFINITION RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view. METHODS message_strip - IMPORTING !text TYPE clike OPTIONAL - !type TYPE clike OPTIONAL - !showicon TYPE clike OPTIONAL - !customicon TYPE clike OPTIONAL - !class TYPE clike OPTIONAL - !visible TYPE clike OPTIONAL - !showclosebutton TYPE clike OPTIONAL + IMPORTING !text TYPE clike OPTIONAL + !type TYPE clike OPTIONAL + !showicon TYPE clike OPTIONAL + !customicon TYPE clike OPTIONAL + !class TYPE clike OPTIONAL + !visible TYPE clike OPTIONAL + !showclosebutton TYPE clike OPTIONAL + enableformattedtext TYPE clike OPTIONAL PREFERRED PARAMETER text - RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view. + RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view. METHODS footer IMPORTING !ns TYPE string OPTIONAL @@ -6880,7 +6881,8 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION. ( n = `customIcon` v = customicon ) ( n = `visible` v = z2ui5_cl_util=>boolean_abap_2_json( visible ) ) ( n = `showCloseButton` v = z2ui5_cl_util=>boolean_abap_2_json( showclosebutton ) ) - ( n = `class` v = class ) ) ). + ( n = `class` v = class ) + ( n = `enableFormattedText` v = z2ui5_cl_util=>boolean_abap_2_json( enableformattedtext ) ) ) ). ENDMETHOD.