CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
EXPORTING
i_callback_program = sy-repid
i_structure_name =
i_callback_user_command = 'USER_COMMAND'
i_callback_pf_status_set = 'SET_PF_STATUS'
TABLES
t_outtab =
EXCEPTIONS
program_error = 1
OTHERS = 2.
IF sy-subrc <> 0.
ENDIF.
we can't double click on 'SET_PF_STATUS', for genarateing form routine
we can't genarate the following code and we shouldn't write the perform statement for 'SET_PF_STATUS',
then how the following coloured code will genarate.
*&-----------------------------------------------------------------*
*& Form SET_PF_STATUS
*&-----------------------------------------------------------------*
* Setting custom PF-Status
*------------------------------------------------------------------*
* -->VT_ETAB Excluding table
*------------------------------------------------------------------*
FORM set_pf_status USING vt_etab TYPE slis_t_extab.
SET PF-STATUS 'Zpf'.
ENDFORM. "SET_PF_STATUS