ABAP Keyword Documentation → ABAP - Quick Reference
EXPORT - Quick reference
Other versions: 7.31 | 7.40 | 7.54
Syntax
EXPORT { {p1 = dobj1 p2 = dobj2 ...}
| {p1 FROM dobj1 p2 FROM dobj2 ...}
| (ptab) }
TO { { DATA BUFFER xstr }
| { INTERNAL TABLE itab }
| { MEMORY ID id }
| { DATABASE
dbtab(ar) [FROM wa] [CLIENT cl] ID id }
| { SHARED MEMORY dbtab(ar) [FROM wa] [CLIENT cl] ID id }
| { SHARED BUFFER dbtab(ar) [FROM wa] [CLIENT cl] ID id } }
[ COMPRESSION { ON | OFF } ].
Effect
Saves data objects dobj1
, dobj2
, ... in a data cluster.
Additions
-
{p1 = dobj1 p2 = dobj2 ...}|{p1 FROM dobj1 p2 FROM dobj2 ...}|(ptab)
Defines the data cluster by specifying single parameters statically using p1 = dobj1 p2 = dobj2 ... orp1 FROM dobj1 p2 FROM dobj2 ...
or by specifying them dynamically in an internal tableptab
. -
DATA BUFFER xstr
Saves the data cluster as a byte string inxstr
. -
INTERNAL TABLE itab
Saves the data cluster in an internal tableitab
. -
MEMORY
Saves the data cluster in the ABAP memory. -
DATABASE dbtab(ar) [CLIENT cl]
Saves the data cluster in a database tabledbtab
in the areaar
under the client IDcl
. -
{SHARED MEMORY}|{SHARED BUFFER} dbtab(ar) [CLIENT cl]
Saves the data cluster in an application buffer in the shared memory of the current AS Instance addressed using the name of a database tabledbtab
, an areaar
, and a client IDcl
. These two alternatives have different displacement mechanisms. -
ID id
Specifies the ID of the data cluster inid
. -
FROM wa
Specifies a work areawa
to save information about the data cluster. -
COMPRESSION { ON | OFF }
Specifies whether or not the data cluster is saved in compressed form.