Ver Mensaje Individual
  #8  
Viejo 04/06/08, 13:14:07
ibecerra
 
Mensajes: n/a
hola como dice , habiliita los campos de tu alv grid con la sentencia
1. gs_layout-edit = 'X'. osea q lo habilitas todos sin excepcion
2. la otra seria q tengas un boton q habilita y deshabilidta los campos para copiar eso lo haces con objetos..
ejemplo
ls_celltab-fieldname = 'ICON'.
ls_celltab-style = cl_gui_alv_grid=>mc_style_disabled.
INSERT ls_celltab INTO TABLE pt_celltab.
ls_celltab-fieldname = 'ZUONR'.
ls_celltab-style = cl_gui_alv_grid=>mc_style_disabled.
INSERT ls_celltab INTO TABLE pt_celltab.
ls_celltab-fieldname = 'GJAHR'.
ls_celltab-style = cl_gui_alv_grid=>mc_style_disabled.
INSERT ls_celltab INTO TABLE pt_celltab.
Responder Con Cita