Method PAI CONTROL
Use
In this method you define the coding required to create and control control objects (such as a SAP List Viewer grid or a text edit control) after display.
Sample source text:
METHOD if_maintenance_brf~pai_control.
DATA: lv_refresh TYPE char01,
lv_valid TYPE char01.
CALL METHOD super->if_maintenance_brf~pai_control.
*------... alv grid control -------------------------------------------
CALL METHOD mo_alv_grid->check_changed_data
IMPORTING
e_valid = lv_valid
CHANGING
c_refresh = lv_refresh.
mv_alv_grid_modified = mc_true.
ENDMETHOD.