Skip to content

Commit 967170a

Browse files
committed
update
1 parent 635e639 commit 967170a

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

src/03/z2ui5_cl_layo_manager.clas.abap

+28-28
Original file line numberDiff line numberDiff line change
@@ -76,39 +76,39 @@ CLASS z2ui5_cl_layo_manager DEFINITION
7676
handle03 TYPE clike
7777
handle04 TYPE clike
7878
RETURNING
79-
VALUE(result) TYPE z2ui5_cl_layo_manager=>ty_t_head.
79+
VALUE(result) TYPE ty_t_head.
8080

8181
CLASS-METHODS select_layout_components
8282
IMPORTING
8383
layout_guid TYPE clike
8484
RETURNING
85-
VALUE(result) TYPE z2ui5_cl_layo_manager=>ty_t_positions.
85+
VALUE(result) TYPE ty_t_positions.
8686

8787
CLASS-METHODS set_text
8888
IMPORTING
89-
!layout TYPE z2ui5_cl_layo_manager=>ty_s_positions
89+
!layout TYPE ty_s_positions
9090
RETURNING
9191
VALUE(result) TYPE string.
9292

9393
CLASS-METHODS sort_by_seqence
9494
IMPORTING
95-
!Pos TYPE z2ui5_cl_layo_manager=>ty_t_positions
95+
!Pos TYPE ty_t_positions
9696
RETURNING
97-
VALUE(result) TYPE z2ui5_cl_layo_manager=>ty_t_positions.
97+
VALUE(result) TYPE ty_t_positions.
9898

9999
CLASS-METHODS set_sub_columns
100100
IMPORTING
101-
!layout TYPE z2ui5_cl_layo_manager=>ty_t_positions
101+
!layout TYPE ty_t_positions
102102
RETURNING
103-
VALUE(result) TYPE z2ui5_cl_layo_manager=>ty_t_positions.
103+
VALUE(result) TYPE ty_t_positions.
104104

105105
CLASS-METHODS get_controls
106106
RETURNING
107-
VALUE(result) TYPE z2ui5_cl_layo_manager=>ty_t_controls.
107+
VALUE(result) TYPE ty_t_controls.
108108

109109
CLASS-METHODS default_layout
110110
IMPORTING
111-
t_layout TYPE z2ui5_cl_layo_manager=>ty_t_positions
111+
t_layout TYPE ty_t_positions
112112
!control TYPE clike
113113
handle01 TYPE clike
114114
handle02 TYPE clike
@@ -119,7 +119,7 @@ CLASS z2ui5_cl_layo_manager DEFINITION
119119

120120
CLASS-METHODS choose_layout
121121
IMPORTING
122-
!control TYPE z2ui5_cl_layo_manager=>control DEFAULT z2ui5_cl_layo_manager=>m_table
122+
!control TYPE control DEFAULT m_table
123123
handle01 TYPE clike OPTIONAL
124124
handle02 TYPE clike OPTIONAL
125125
handle03 TYPE clike OPTIONAL
@@ -148,24 +148,24 @@ CLASS z2ui5_cl_layo_manager IMPLEMENTATION.
148148
METHOD get_controls.
149149

150150
result = VALUE #( active = abap_true
151-
( control = z2ui5_cl_layo_manager=>m_table attribute = 'VISIBLE' )
152-
( control = z2ui5_cl_layo_manager=>m_table attribute = 'MERGE' )
153-
( control = z2ui5_cl_layo_manager=>m_table attribute = 'HALIGN' )
154-
( control = z2ui5_cl_layo_manager=>m_table attribute = 'IMPORTANCE' )
155-
( control = z2ui5_cl_layo_manager=>m_table attribute = 'WIDTH' )
156-
( control = z2ui5_cl_layo_manager=>m_table attribute = 'ALTERNATIVE_TEXT' )
157-
( control = z2ui5_cl_layo_manager=>m_table attribute = 'SEQUENCE' )
158-
( control = z2ui5_cl_layo_manager=>m_table attribute = 'SUBCOLUMN' )
159-
( control = z2ui5_cl_layo_manager=>m_table attribute = 'REFERENCE_FIELD' )
160-
( control = z2ui5_cl_layo_manager=>ui_table attribute = 'VISIBLE' )
161-
( control = z2ui5_cl_layo_manager=>ui_table attribute = 'ALTERNATIVE_TEXT' )
162-
( control = z2ui5_cl_layo_manager=>ui_table attribute = 'HALIGN' )
163-
( control = z2ui5_cl_layo_manager=>ui_table attribute = 'WIDTH' )
164-
( control = z2ui5_cl_layo_manager=>others attribute = 'VISIBLE' )
165-
( control = z2ui5_cl_layo_manager=>others attribute = 'SEQUENCE' )
166-
( control = z2ui5_cl_layo_manager=>others attribute = 'ALTERNATIVE_TEXT' )
167-
( control = z2ui5_cl_layo_manager=>others attribute = 'REFERENCE_FIELD' )
168-
( control = z2ui5_cl_layo_manager=>others attribute = 'WIDTH' ) ).
151+
( control = m_table attribute = 'VISIBLE' )
152+
( control = m_table attribute = 'MERGE' )
153+
( control = m_table attribute = 'HALIGN' )
154+
( control = m_table attribute = 'IMPORTANCE' )
155+
( control = m_table attribute = 'WIDTH' )
156+
( control = m_table attribute = 'ALTERNATIVE_TEXT' )
157+
( control = m_table attribute = 'SEQUENCE' )
158+
( control = m_table attribute = 'SUBCOLUMN' )
159+
( control = m_table attribute = 'REFERENCE_FIELD' )
160+
( control = ui_table attribute = 'VISIBLE' )
161+
( control = ui_table attribute = 'ALTERNATIVE_TEXT' )
162+
( control = ui_table attribute = 'HALIGN' )
163+
( control = ui_table attribute = 'WIDTH' )
164+
( control = others attribute = 'VISIBLE' )
165+
( control = others attribute = 'SEQUENCE' )
166+
( control = others attribute = 'ALTERNATIVE_TEXT' )
167+
( control = others attribute = 'REFERENCE_FIELD' )
168+
( control = others attribute = 'WIDTH' ) ).
169169

170170
ENDMETHOD.
171171

0 commit comments

Comments
 (0)