User Defined Types
LIKE <data object> [OCCURS 0].
Rules for assigning data type names:
- The maximum name length is 30 characters
(letters, numbers, and special characters)
- Special characters ( ) < > + . , :
- Name cannot consist of only numbers
- Always use a letter as the first character
- If combining words in a name, separate
Notes:
User Defined Types
You can declare user defined data types in your ABAP/4 programs using the TYPES statement.
- In doing so you can refer to
- pre-defined or user defined data types using TYPE or
- the type of data objects within the program or ABAP/4 Dictionary objects using LIKE.
- Note that you can use the additions TYPE and LIKE for any type declarations.