Tema: CheckBox
Ver Mensaje Individual
  #3  
Viejo 12/07/11, 15:51:27
caralbgro caralbgro is offline
Senior Member
 
Fecha de Ingreso: sep 2007
Mensajes: 478
an ver si te ayuda

FORM F_SELECION_ROWS .
DATA tl_index TYPE lvc_t_row.
DATA pos TYPE i.


CALL METHOD ob_alvgrid->get_selected_rows
IMPORTING
et_index_rows = tl_index
* et_row_no =
.

REFRESH t_tabla_procesar.

LOOP AT tl_index INTO pos.
READ TABLE t_tabla INDEX pos.
t_tabla_procesar = t_tabla.
APPEND t_tabla_procesar.
ENDLOOP.
IF sy-subrc NE 0.
MESSAGE 'Selecione algun registro' TYPE 'E'.
ENDIF.
CLEAR tl_index.
ENDFORM.
Responder Con Cita