In this case you are defining MYTYPE like the COL2 field of the STRUCT2 which is defined in STRUCT1.
Regards,
Rich Heilman
hi,
TYPES MYTYPE TYPE STRUCT1-STRUCT2-COL2.
or
TYPES MYTYPE TYPE i.
both are same.
here you are defining one data type MYTYPE OF type Integer.
first one is defining using with the existing datatype STRUCT1
and the second is directly defining with basic datatype I
regards
srikanth
Add a comment