Ver Mensaje Individual
  #1  
Viejo 13/12/07, 13:49:45
Laurie Laurie is offline
Junior Member
 
Fecha de Ingreso: nov 2006
Mensajes: 3
Problemas con encabezado ALV

hola gente:

Tengo un pregunta. En una alv grid común...¿cuál puede ser la causa por la que un encabezado me salga en blanco? Si a la función top_of_page le coloco lo siguiente ;

form top_of_page tables i_header type SLIS_T_LISTHEADER.

i_header-typ = 'H'.
i_header-key = ' '.
i_header-info = 'Pagos mensuales a terceros'.
append i_header.

CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
it_list_commentary = i_header.


Y a la función que agrega el form a la tabla de eventos le paso lo siguiente:

*----------------------------------------------------------------------*
form armar_evento tables i_eventab type slis_t_event.

Data: r_eventab type SLIS_ALV_EVENT.

r_eventab-name = 'top_of_page'.
r_eventab-form = 'top_of_page'.
append r_eventab to i_eventab.

endform. " armar_evento


Muchas gracias.
Responder Con Cita