File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 1
1
CLASS cl_alv_variant DEFINITION PUBLIC .
2
2
PUBLIC SECTION .
3
3
4
+ METHODS constructor
5
+ IMPORTING
6
+ it_outtab TYPE REF TO data OPTIONAL
7
+ it_fieldcatalog TYPE lvc_t_fcat OPTIONAL
8
+ is_variant TYPE disvariant OPTIONAL
9
+ is_layout TYPE lvc_s_layo OPTIONAL .
10
+
4
11
METHODS delete_variants
5
12
IMPORTING
6
13
it_variants TYPE any
7
14
RETURNING
8
15
VALUE (boolean ) TYPE abap_bool .
9
16
17
+ METHODS get_variant_info_from_db
18
+ IMPORTING
19
+ is_variant TYPE disvariant
20
+ it_def_fcat TYPE lvc_t_fcat OPTIONAL
21
+ EXPORTING
22
+ et_fcat TYPE lvc_t_fcat.
23
+
10
24
ENDCLASS .
11
25
12
26
CLASS cl_alv_variant IMPLEMENTATION .
27
+ METHOD constructor .
28
+ RETURN . " todo, implement method
29
+ ENDMETHOD .
30
+
31
+ METHOD get_variant_info_from_db .
32
+ RETURN . " todo, implement method
33
+ ENDMETHOD .
13
34
14
35
METHOD delete_variants .
15
36
RETURN . " todo, implement method
Original file line number Diff line number Diff line change @@ -124,7 +124,11 @@ CLASS cl_gui_alv_grid DEFINITION PUBLIC INHERITING FROM cl_gui_control.
124
124
125
125
METHODS get_frontend_fieldcatalog
126
126
EXPORTING
127
- et_fieldcatalog TYPE any .
127
+ et_fieldcatalog TYPE lvc_t_fcat.
128
+
129
+ METHODS set_frontend_fieldcatalog
130
+ IMPORTING
131
+ it_fieldcatalog TYPE lvc_t_fcat.
128
132
129
133
METHODS get_current_cell
130
134
EXPORTING
@@ -176,6 +180,10 @@ CLASS cl_gui_alv_grid DEFINITION PUBLIC INHERITING FROM cl_gui_control.
176
180
ENDCLASS .
177
181
178
182
CLASS cl_gui_alv_grid IMPLEMENTATION .
183
+ METHOD set_frontend_fieldcatalog .
184
+ RETURN . " todo, implement method
185
+ ENDMETHOD .
186
+
179
187
METHOD set_scroll_info_via_id .
180
188
RETURN . " todo, implement method
181
189
ENDMETHOD .
You can’t perform that action at this time.
0 commit comments