Prueba esto
Tienes el parámetro de opción callback_top_of_page, donde debes proporcionar el nombre del formulario que contiene el código.
I_CALLBACK_TOP_OF_PAGE = top_of_page.
form top_of_page.
DATA: lt_alv_head TYPE slis_t_listheader.
DATA: lv_title TYPE sy-title.
DATA: lx_alh TYPE slis_listheader.
lv_title = sy-title.
*--- Nombre de la empresa
lx_alh-typ = 'H'. " H = Encabezado, S = Selección, A = Acción
lx_alh-key = 'código de empresa'.
lx_alh-info = s_compnycode.
APPEND lx_alh TO lt_alv_head.
*--- Título del informe
lx_alh-typ = 'S'.
lx_alh-key = 'NOMBRE DEL TÍTULO: '(013).
lx_alh-info = lv_title.
APPEND lx_alh TO lt_alv_head.
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
it_list_commentary = lt_alv_head.
endform.