Ver Mensaje Individual
  #3  
Viejo 20/09/13, 16:06:59
joau_fedipe joau_fedipe is offline
Member
 
Fecha de Ingreso: oct 2006
Mensajes: 79
agregar atributo

Karloz,
en el layout del programa, agregale el atributo outputlen al campo que deseas que te muestre los 255 caracteres.
Ejemplo:

CLEAR: l_fieldcat.
ADD 1 TO w_col_pos.
l_fieldcat-col_pos = w_col_pos.
l_fieldcat-tabname = 'TABLA'.
l_fieldcat-fieldname = 'CAMPO'.
l_fieldcat-seltext_l = text-g11.
l_fieldcat-outputlen = 255.
l_fieldcat-datatype = 'CHAR'.
APPEND l_fieldcat TO p_fieldtab.

Saludos.
Responder Con Cita