ABAP Keyword Documentation → ABAP - Reference → Program structure → Modularization Statements → Event Blocks → Reporting Events
GET node
Other versions: 7.31 | 7.40 | 7.54
Syntax
GET node [LATE] [FIELDS f1 f2 ...].
Alternatives
1. GET node [FIELDS f1 f2 ...].
2. GET node LATE [FIELDS f1 f2 ...].
Addition
Effect
The statement GET
is only intended for use in
executable programs that are associated with a
logical database. You can use GET
to handle two types of events after
submitting these types of executable programs:
- Read events of the logical database
-
Closing a hierarchy level in the logical database
If a list is written during a GET
event, an automatic line feed is created first.
Notes
-
The event blocks after
GET
are implemented internally as procedures. Declarative statements inGET
event blocks create local data. -
If logical databases are no longer used, then you no longer need to use the statement
REJECT
either.
Alternative 1
GET node [FIELDS f1 f2 ...].
Effect
This statement defines an event block whose result is triggered by the
ABAP runtime environment after
submitting an executable program, if the logical
database with which the program is associated provides data in the work area node
.
The node
work area must be declared with the
NODES statement (or TABLES
). The data can be processed in the event block.
GET node
also controls the behavior of the logical database.
-
The logical database reads all data from all nodes that are not defined for field selection using
SELECTION-SCREEN FIELD SELECTION
in the logical database and are located on the access path of the logical database superior tonode
. This is independent of whetherGET
event blocks have been defined for these nodes or not. However, only the data of those nodes can be accessed for which a work area was declared using theNODES
(orTABLES
) statement. -
If a field selection is defined in the logical database for those nodes on the access path of the logical
database superior to
node
(and for which noGET
event blocks are defined), then all data is read only for the nodes for which aNODES
(orTABLES
) statement exists. For nodes without aNODES
(orTABLES
) statement, only the key fields are read, because the logical database needs the key fields to build the access path.
After the event block GET
is
ended regularly, the nodes that are inferior in the hierarchical structure of the
logical database are processed (see PUT
).
At the end of a hierarchy level of the logical database, all fields of the work area node
are set to hexadecimal null.
Alternative 2
GET node LATE [FIELDS f1 f2 ...].
Effect
This statement defines an event block whose result is triggered by the ABAP runtime environment after
submitting an executable program, when the logical
database has read all records of node node
. For node
and FIELDS
, the same applies as for the previous variant. You can use this event block for final processing actions on the hierarchy level of the node.
Addition
... FIELDS f1 f2 ...
Effect
The addition FIELDS
specifies that the logical database reads only the specified
fields f1 f2 ...
and the key fields for node node
.
As a prerequisite, the node must be defined for field selection in the logical database using
SELECTION-SCREEN FIELD SELECTION
. The content of the other fields of the work area is set to hexadecimal null.
Example