Hi Experts!!
I have ALV OO:
CALL FUNCTION 'DDIF_FIELDINFO_GET'
CALL METHOD o_grid_fase->set_table_for_first_display
EXPORTING
i_save = 'A'
i_default = 'X'
is_layout = wa_layout
is_variant = wa_variante
CHANGING
it_outtab = <z_table>
it_fieldcatalog = t_catalogo_fase[].
ELSE.
CALL METHOD o_grid_fase->check_changed_data.
CALL METHOD o_grid_fase->refresh_table_display.
ENDIF.
The first time I called, everything is ok, but the next times all is bad.
The following times: cools the ALV entering, but <z_table> table has other values and always shows the first time.
The following times only freshen:
ELSE.
CALL METHOD o_grid_fase->check_changed_data.
CALL METHOD o_grid_fase->refresh_table_display.
ENDIF.
Anyone help me please