Hi,
i use this in my ALVGRID OO.
PERFORM DATEN_EINLESEN.
*
GS_STBL-ROW = 'X'.
GS_STBL-COL = 'X'.
CALL METHOD GR_ALVGRID_LEFT->REFRESH_TABLE_DISPLAY
EXPORTING
IS_STABLE = GS_STBL
I_SOFT_REFRESH = 'X'
EXCEPTIONS
FINISHED = 1
OTHERS = 2.
*
in first display my output is correct in layout ( GS_LAYOUT-CWIDTH_OPT = 'X'.)
When i actual my itab and use the obove method, the col is not optimized!
i have tried with and without IS_STABLE and with and without I_SOFT_REFRESH
any idea what i made wrong?
Regards, Dieter