Skip to Content
0
Jun 09, 2020 at 07:46 AM

load and modify data on WDDOMODIFYVIEW

39 Views Last edit Jun 09, 2020 at 07:47 AM 6 rev

Hi experts,

How do I load and modify the data being displayed on the dynpro view?

Because I already added a new column in the view and I want to populate that new column. So I want to manipulate the data displayed on the view.

in method WDDOMODIFYVIEW, I can only see this code below.

  wd_assist->modify_main_view( first_time = first_time view = view ).

  IF first_time = abap_true.
    lr_table ?= view->get_element( 'TAB_DIA' ).
    wd_this->gr_table_control ?= lr_table->_method_handler.
 
  ENDIF.