La creación de estructuras internas ayudan mucho para no manejar ni crear demasiadas tablas internas, pero debemos de tener mucho cuidado a la hora de utilizarlas y acceder a la data, ya que podríamos confundirnos con los niveles.
El código es el siguiente:
types: begin of ty_est1,
campo1 type char1,
campo2 type char3,
end of ty_est1,
begin of ty_est2,
campo3 type char4,
campo4 type char5,
campo5 type char2,
end of ty_est2.
types: begin of ty_est3.
INCLUDE type ty_est1.
INCLUDE type ty_est2.
TYPES: end of ty_est3.
data: td_tabla3 type table of ty_est3,
td_tabla type table of ty_est1,
td_tab2 type table of ty_est2.
0 comentarios:
Publicar un comentario