Skip to content

ABAP Keyword Documentation →  ABAP − Short Reference 

TYPES BEGIN OF MESH - Short Reference

Reference

Other versions: 7.31 | 7.40 | 7.54

Syntax


TYPES BEGIN OF MESH mesh_type. 
  ...
  TYPES  snode { TYPE {[REF TO] table_type}|ref_type }
             | { LIKE {[REF TO] itab      }|dref     }
               [ASSOCIATION to_node TO tnode ON tcomp1 = scomp1
                                           [AND tcomp2 = scomp2
                                           [AND ... ]]
                                           [USING KEY key_name]]
               [...].
  ...
DATA END OF MESH mesh_type.

Effect

Defines a mesh type mesh_type whose nodes are tabular data types or reference types for internal tables.

Addition

  • ASSOCIATION ...
    Declares an association from a start node snode to a target node tnode. The relationship between the nodes is defined using one or more ON conditions, where USING KEY can be used to specify the table key used.