cancel
Showing results for 
Search instead for 
Did you mean: 

Update itab in ALV

Former Member
0 Kudos

Hi

My ALV list display some data from a table.

I have updated some of the fields directly in the ALV list.

Is there a way to update the internal table with the new informations?


  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
    EXPORTING
      i_callback_program       = sy-repid
      i_callback_pf_status_set = 'SET_PF_STATUS'
      i_callback_user_command  = 'USER_COMMAND'
      is_layout_lvc            = wt_layout
      it_fieldcat_lvc          = wt_fieldcat
      i_grid_title             = w_titleoutput
      i_save                   = 'X'
      it_sort_lvc              = wt_sort
      it_event_exit            = wt_event_exit[]
      it_special_groups_lvc    = wt_sort_alv
    TABLES
      t_outtab                 = wt_output
    EXCEPTIONS
      program_error            = 1
      OTHERS                   = 2.

In my case, I have updated the entries in itab WT_OUTPUT, and I can see my new data on the screen - the problem is that I can't see the updated informations in the itab WT_OUTPUT.

I have tried FM "REUSE_ALV_BLOCK_LIST_REFRESH'" but does not seem to work.

Any suggestions?

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

sorry wrong place to post.

Former Member
0 Kudos

Hi,

Please post in ABAP general forum. This is not relevant to WDA.

Regards,

Lekha.