mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-30 11:00:25 +08:00
change of importing parameter (#483)
* Update README.md * Update README.md * update controller nest * message manager * update * Update src/z2ui5_cl_http_handler.clas.abap Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com> * atargets fix * test * update * update * update * Update README.md --------- Co-authored-by: abaplint[bot] <24845621+abaplint[bot]@users.noreply.github.com>
This commit is contained in:
parent
e7f6762cf5
commit
e19e1661a2
|
@ -44,8 +44,8 @@
|
||||||
* Want to help out? Check out the contribution guidelines [(abap2UI5/contribution)](https://github.com/abap2UI5/abap2UI5-documentation/blob/main/CONTRIBUTING.md)
|
* Want to help out? Check out the contribution guidelines [(abap2UI5/contribution)](https://github.com/abap2UI5/abap2UI5-documentation/blob/main/CONTRIBUTING.md)
|
||||||
|
|
||||||
#### Apps & Extensions
|
#### Apps & Extensions
|
||||||
* Add your apps to SAP Fiori Launchpad On-Premise [(ext-fiori_launchpad)](https://github.com/abap2UI5/ext-service_integration)
|
* Add your apps to SAP Fiori On-Premise Launchpad [(ext-fiori_launchpad)](https://github.com/abap2UI5/ext-service_integration)
|
||||||
* Integrate your apps with the Business Technology Platform [(ext-btp)](https://github.com/abap2UI5/ext-business_technology_platform)
|
* Integrate your apps with the SAP Business Technology Platform [(ext-btp)](https://github.com/abap2UI5/ext-business_technology_platform)
|
||||||
* Explore abap2UI5-tools, a collection of useful tools & apps [(ext-app_tools)](https://github.com/abap2UI5/app-tools)
|
* Explore abap2UI5-tools, a collection of useful tools & apps [(ext-app_tools)](https://github.com/abap2UI5/app-tools)
|
||||||
* Discover other projects using abap2UI5 [(abap2UI5/links)](https://github.com/abap2UI5/abap2UI5-documentation/blob/main/docs/links.md)
|
* Discover other projects using abap2UI5 [(abap2UI5/links)](https://github.com/abap2UI5/abap2UI5-documentation/blob/main/docs/links.md)
|
||||||
* And lastly, don't forget to explore the [Samples Repository 🧭](https://github.com/abap2UI5/abap2UI5-samples)
|
* And lastly, don't forget to explore the [Samples Repository 🧭](https://github.com/abap2UI5/abap2UI5-samples)
|
||||||
|
|
|
@ -158,8 +158,8 @@ CLASS z2ui5_cl_xml_view DEFINITION
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!show_header TYPE clike OPTIONAL
|
!show_header TYPE clike OPTIONAL
|
||||||
!text TYPE clike OPTIONAL
|
!text TYPE clike OPTIONAL
|
||||||
!enableformattedtext TYPE clike OPTIONAL
|
* !enableformattedtext TYPE clike OPTIONAL
|
||||||
!description TYPE clike OPTIONAL
|
* !description TYPE clike OPTIONAL
|
||||||
!icon TYPE clike OPTIONAL
|
!icon TYPE clike OPTIONAL
|
||||||
RETURNING
|
RETURNING
|
||||||
VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
|
VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
|
||||||
|
@ -2768,10 +2768,11 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
|
||||||
result = _generic( name = `MessagePage`
|
result = _generic( name = `MessagePage`
|
||||||
t_prop = VALUE #(
|
t_prop = VALUE #(
|
||||||
( n = `showHeader` v = z2ui5_cl_fw_utility=>get_json_boolean( show_header ) )
|
( n = `showHeader` v = z2ui5_cl_fw_utility=>get_json_boolean( show_header ) )
|
||||||
( n = `description` v = description )
|
* ( n = `description` v = description )
|
||||||
( n = `icon` v = icon )
|
( n = `icon` v = icon )
|
||||||
( n = `text` v = text )
|
( n = `text` v = text )
|
||||||
( n = `enableFormattedText` v = z2ui5_cl_fw_utility=>get_json_boolean( enableformattedtext ) ) ) ).
|
* ( n = `enableFormattedText` v = z2ui5_cl_fw_utility=>get_json_boolean( enableformattedtext ) )
|
||||||
|
) ).
|
||||||
ENDMETHOD.
|
ENDMETHOD.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user