‎2010 Jan 15 9:17 AM
Hi,
when i refresh my alv grid with refresh_table_display it sets the scroll to the top row. but i want it to remain its own position.
i set the parameter is_stable but problem not solved.
Thx
‎2010 Mar 19 2:59 PM
Hi Mustafa,
You have to set is_stable like is_stable-row = 'X' and is_stable-col = 'X' . You can set also i_soft_refresh = 'X'.
ls_stable-row = 'X'.
ls_stable-col = 'X'.
call method gr_alvgrid->refresh_table_display
exporting
is_stable = ls_stable
i_soft_refresh = 'X'.Regards,
Kolay Gelsin.
Caner.
‎2010 Jan 15 11:12 AM
Fill fields of structure IS_STABLE TYPE LVC_S_STBLand call method as follows:
CALL METHOD <Ref.var. CL_GUI_ALV_GRID > ->refresh_table_display
EXPORTING
IS_STABLE = <Structure Type LVC_S_STBL >
I_SOFT_REFRESH = <Variable Type CHAR01 > .
Regards,
David
‎2010 Mar 19 2:59 PM
Hi Mustafa,
You have to set is_stable like is_stable-row = 'X' and is_stable-col = 'X' . You can set also i_soft_refresh = 'X'.
ls_stable-row = 'X'.
ls_stable-col = 'X'.
call method gr_alvgrid->refresh_table_display
exporting
is_stable = ls_stable
i_soft_refresh = 'X'.Regards,
Kolay Gelsin.
Caner.