If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
Pues eso, 'saperos' q toy iniciandome en sap y no sé como dar funcionalidad a un botón que he añadido en la barra del alv. ¿Alguien podría ayudarme? Un saludo
tienes que capturar el evento handle_user_command..
si es con la funcion reuse..
agregas esto en la funcion:
i_callback_pf_status_set = 'SET_STATUS'
y despues creas un form set_status donde dices que hace el boton que presionaste
ej:
FORM set_status USING lt_extab TYPE slis_t_extab.
DATA: wa_extab TYPE slis_extab.
wa_extab-fcode = '&ABC'.
APPEND wa_extab TO lt_extab.
wa_extab-fcode = '&GRAPH'.
APPEND wa_extab TO lt_extab.
Comentario