Experimente isto
Você tem o parâmetro de opção callback_top_of_page, onde deve fornecer o nome do formulário que contém o 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.
*--- Nome da empresa
lx_alh-typ = 'H'. " H = Cabeçalho, S = Seleção, A = Ação
lx_alh-key = 'código da empresa'.
lx_alh-info = s_compnycode.
APPEND lx_alh TO lt_alv_head.
*--- Título do relatório
lx_alh-typ = 'S'.
lx_alh-key = 'NOME DO 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.