Ver Mensaje Individual
  #5  
Viejo 29/07/14, 21:09:09
roberto.mejia roberto.mejia is offline
Junior Member
 
Fecha de Ingreso: jun 2014
Mensajes: 24

Gracias me salió, y si quisiera hacer con 2 tablas z por ejemplo spfli y sflight sería i_structure_name = 'SFLIGHT', 'SPFLI' ?

Y si también quiero sólo mostrar algunos campos lo tendría que hacer de la forma manual diciendo campo por campo ? parecido a lo de abajo :

CLEAR ti_fieldcat.
ti_fieldcat-fieldname = 'CARRID'.
ti_fieldcat-tabname = 'TI_TABLA'.
ti_fieldcat-seltext_m = 'CARRID'.
ti_FIELDCAT-EMPHASIZE = 'C710'.
ti_fieldcat-col_pos = 0.
ti_fieldcat-row_pos = 1.
ti_fieldcat-OUTPUTLEN = 255.
APPEND ti_fieldcat.

CLEAR ti_fieldcat.
ti_fieldcat-fieldname = 'CITYFROM'.
ti_fieldcat-tabname = 'TI_TABLA'.
ti_fieldcat-seltext_s = 'CIUDAD'. " descripcion corta
ti_fieldcat-seltext_l = 'CIUDAD GRANDE'. " descripcion larga
ti_fieldcat-seltext_m = 'CIUDAD MED'. " descripcion media
ti_fieldcat-outputlen = 8.
ti_fieldcat-col_pos = 3.
ti_fieldcat-row_pos = 2.
APPEND ti_fieldcat.
Responder Con Cita