@@ -76,39 +76,39 @@ CLASS z2ui5_cl_layo_manager DEFINITION
76
76
handle03 TYPE clike
77
77
handle04 TYPE clike
78
78
RETURNING
79
- VALUE (result ) TYPE z2ui5_cl_layo_manager=> ty_t_head.
79
+ VALUE (result ) TYPE ty_t_head.
80
80
81
81
CLASS-METHODS select_layout_components
82
82
IMPORTING
83
83
layout_guid TYPE clike
84
84
RETURNING
85
- VALUE (result ) TYPE z2ui5_cl_layo_manager=> ty_t_positions.
85
+ VALUE (result ) TYPE ty_t_positions.
86
86
87
87
CLASS-METHODS set_text
88
88
IMPORTING
89
- !layout TYPE z2ui5_cl_layo_manager=> ty_s_positions
89
+ !layout TYPE ty_s_positions
90
90
RETURNING
91
91
VALUE (result ) TYPE string .
92
92
93
93
CLASS-METHODS sort_by_seqence
94
94
IMPORTING
95
- !Pos TYPE z2ui5_cl_layo_manager=> ty_t_positions
95
+ !Pos TYPE ty_t_positions
96
96
RETURNING
97
- VALUE (result ) TYPE z2ui5_cl_layo_manager=> ty_t_positions.
97
+ VALUE (result ) TYPE ty_t_positions.
98
98
99
99
CLASS-METHODS set_sub_columns
100
100
IMPORTING
101
- !layout TYPE z2ui5_cl_layo_manager=> ty_t_positions
101
+ !layout TYPE ty_t_positions
102
102
RETURNING
103
- VALUE (result ) TYPE z2ui5_cl_layo_manager=> ty_t_positions.
103
+ VALUE (result ) TYPE ty_t_positions.
104
104
105
105
CLASS-METHODS get_controls
106
106
RETURNING
107
- VALUE (result ) TYPE z2ui5_cl_layo_manager=> ty_t_controls.
107
+ VALUE (result ) TYPE ty_t_controls.
108
108
109
109
CLASS-METHODS default_layout
110
110
IMPORTING
111
- t_layout TYPE z2ui5_cl_layo_manager=> ty_t_positions
111
+ t_layout TYPE ty_t_positions
112
112
!control TYPE clike
113
113
handle01 TYPE clike
114
114
handle02 TYPE clike
@@ -119,7 +119,7 @@ CLASS z2ui5_cl_layo_manager DEFINITION
119
119
120
120
CLASS-METHODS choose_layout
121
121
IMPORTING
122
- !control TYPE z2ui5_cl_layo_manager=> control DEFAULT z2ui5_cl_layo_manager=> m_table
122
+ !control TYPE control DEFAULT m_table
123
123
handle01 TYPE clike OPTIONAL
124
124
handle02 TYPE clike OPTIONAL
125
125
handle03 TYPE clike OPTIONAL
@@ -148,24 +148,24 @@ CLASS z2ui5_cl_layo_manager IMPLEMENTATION.
148
148
METHOD get_controls .
149
149
150
150
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' ) ).
169
169
170
170
ENDMETHOD .
171
171
0 commit comments