May 2019
Beginner to intermediate
548 pages
12h 39m
English
The structure is a data object that consists of components or fields. This data object can be created globally and locally. The user can create a global structure using the SE11 transaction. The creation of a local structure can be implemented in two ways. The first way is by implementing the code in the method:
TYPES: BEGIN OF tt_type, first_data TYPE string, second_data TYPE i, third_data TYPE c, END OF tt_type.
This solution has the limitation that it is only implemented in one method. If we want to use a structure in another class, we must create types in the class editor:

When we enter Direct Type Entry, we develop the preceding ...
Read now
Unlock full access