Ver Mensaje Individual
  #4  
Viejo 11/02/09, 16:15:26
ballan ballan is offline
Senior Member
 
Fecha de Ingreso: oct 2006
Mensajes: 671
Sustituye esto

loop at gt_fieldcat.
if gt_fieldcat-fieldname = 'BULTO'.
gt_fieldcat-no_zero = space.
endif.
endloop.

por esto

field-symbols: <linea> type any.

loop at gt_fieldcat assigning <linea>.

if <linea>-fieldname = 'BULTO'.

<linea>-no_zero = space.

endif.

endloop.
Responder Con Cita