ABAP Keyword Documentation → ABAP Glossary
heap
Also known as free or dynamic memory. Part of the
program memory in which
anonymous data objects and
instances of
classes created dynamically using
CREATE DATA
,
CREATE OBJECT
, or NEW
are saved. The allocated memory can be released again by the
garbage collector. See also stack.