mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 13:03:01 +08:00
WDYN: additional sorting
This commit is contained in:
parent
988a6b1b90
commit
b1e35d75b0
|
@ -3,7 +3,7 @@ REPORT zabapgit LINE-SIZE 100.
|
||||||
* See http://www.abapgit.org
|
* See http://www.abapgit.org
|
||||||
|
|
||||||
CONSTANTS: gc_xml_version TYPE string VALUE 'v1.0.0', "#EC NOTEXT
|
CONSTANTS: gc_xml_version TYPE string VALUE 'v1.0.0', "#EC NOTEXT
|
||||||
gc_abap_version TYPE string VALUE 'v1.24.0'. "#EC NOTEXT
|
gc_abap_version TYPE string VALUE 'v1.24.1'. "#EC NOTEXT
|
||||||
|
|
||||||
********************************************************************************
|
********************************************************************************
|
||||||
* The MIT License (MIT)
|
* The MIT License (MIT)
|
||||||
|
|
|
@ -522,8 +522,8 @@ CLASS lcl_object_wdyn IMPLEMENTATION.
|
||||||
ls_component_key TYPE wdy_md_component_key,
|
ls_component_key TYPE wdy_md_component_key,
|
||||||
ls_view_key TYPE wdy_md_view_key.
|
ls_view_key TYPE wdy_md_view_key.
|
||||||
|
|
||||||
FIELD-SYMBOLS: <ls_object> LIKE LINE OF lt_objects.
|
FIELD-SYMBOLS: <ls_object> LIKE LINE OF lt_objects,
|
||||||
|
<ls_meta> LIKE LINE OF rs_component-ctlr_metadata.
|
||||||
|
|
||||||
CLEAR mt_components.
|
CLEAR mt_components.
|
||||||
CLEAR mt_sources.
|
CLEAR mt_sources.
|
||||||
|
@ -550,6 +550,21 @@ CLASS lcl_object_wdyn IMPLEMENTATION.
|
||||||
definition-component_name ASCENDING
|
definition-component_name ASCENDING
|
||||||
definition-controller_name ASCENDING.
|
definition-controller_name ASCENDING.
|
||||||
|
|
||||||
|
LOOP AT rs_component-ctlr_metadata ASSIGNING <ls_meta>.
|
||||||
|
SORT <ls_meta>-descriptions.
|
||||||
|
SORT <ls_meta>-controller_usages.
|
||||||
|
SORT <ls_meta>-controller_components.
|
||||||
|
SORT <ls_meta>-controller_component_texts.
|
||||||
|
SORT <ls_meta>-controller_parameters.
|
||||||
|
SORT <ls_meta>-controller_parameter_texts.
|
||||||
|
SORT <ls_meta>-context_nodes.
|
||||||
|
SORT <ls_meta>-context_attributes.
|
||||||
|
SORT <ls_meta>-context_mappings.
|
||||||
|
SORT <ls_meta>-fieldgroups.
|
||||||
|
SORT <ls_meta>-controller_exceptions.
|
||||||
|
SORT <ls_meta>-controller_exception_texts.
|
||||||
|
ENDLOOP.
|
||||||
|
|
||||||
SORT mt_components BY
|
SORT mt_components BY
|
||||||
component_name ASCENDING
|
component_name ASCENDING
|
||||||
controller_name ASCENDING
|
controller_name ASCENDING
|
||||||
|
|
Loading…
Reference in New Issue
Block a user