Hello together,
I'm trying to create an own PF-Status within an ALV-Grid-List.
Therefore I call the ALV-FM as following:
CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
EXPORTING
i_callback_program = sy-repid
it_fieldcat = it_fieldcat
i_callback_pf_status_set = 'PF_STATUS_SET'
i_callback_user_command = 'USER_COMMAND1'
TABLES
t_outtab = lt_final.
----
FORM PF_STATUS_SET *
----
........ *
----
FORM pf_status_set USING p_extab TYPE slis_t_extab.
SET PF-STATUS 'CUR_PLAN' EXCLUDING p_extab.
ENDFORM.
----
FORM USER_COMMAND1 *
----
FORM user_command1 USING ucomm LIKE sy-ucomm selfield TYPE
slis_selfield.
CASE sy-ucomm.
WHEN....
WHEN....
ENDFORM.
But this PF-status is not used.
It is used the standard-PF-status STANDARD from Report SAPLKKBL.
Have I missed anything?
Kind regards
Udo