Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4bf0f0f

Browse files
committedFeb 28, 2025·
more ALV methods
1 parent d899c70 commit 4bf0f0f

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
 

‎src/cl_gui_alv_grid.clas.abap

+29
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,23 @@ CLASS cl_gui_alv_grid DEFINITION PUBLIC INHERITING FROM cl_gui_control.
120120
EXPORTING
121121
et_fieldcatalog TYPE any.
122122

123+
METHODS get_current_cell
124+
EXPORTING
125+
es_row_id TYPE lvc_s_row
126+
es_col_id TYPE lvc_s_col.
127+
128+
METHODS set_current_cell_via_id
129+
IMPORTING
130+
is_row_id TYPE lvc_s_row OPTIONAL
131+
is_column_id TYPE lvc_s_col OPTIONAL
132+
is_row_no TYPE lvc_s_roid OPTIONAL.
133+
134+
METHODS get_scroll_info_via_id
135+
EXPORTING
136+
es_row_no TYPE lvc_s_roid
137+
es_row_info TYPE lvc_s_row
138+
es_col_info TYPE lvc_s_col.
139+
123140
CONSTANTS mc_fc_detail TYPE ui_func VALUE 'TODO'.
124141
CONSTANTS mc_fc_loc_append_row TYPE ui_func VALUE 'TODO'.
125142
CONSTANTS mc_fc_loc_copy TYPE ui_func VALUE 'TODO'.
@@ -135,6 +152,18 @@ CLASS cl_gui_alv_grid DEFINITION PUBLIC INHERITING FROM cl_gui_control.
135152
ENDCLASS.
136153

137154
CLASS cl_gui_alv_grid IMPLEMENTATION.
155+
METHOD get_scroll_info_via_id.
156+
RETURN. " todo, implement method
157+
ENDMETHOD.
158+
159+
METHOD set_current_cell_via_id.
160+
RETURN. " todo, implement method
161+
ENDMETHOD.
162+
163+
METHOD get_current_cell.
164+
RETURN. " todo, implement method
165+
ENDMETHOD.
166+
138167
METHOD get_frontend_fieldcatalog.
139168
RETURN. " todo, implement method
140169
ENDMETHOD.

0 commit comments

Comments
 (0)
Please sign in to comment.