SAP IMPORT DATA CLUSTER ABAP Statements



Get Example source ABAP code based on a different SAP table
  


ID IMPORT
• IMPORT cluster ABAP Statement
• FROM IMPORT cluster

IMPORT
Short Reference

ABAP_SYNTAX
IMPORT parameter_list FROM medium $[ conversion_options$].

What does it do?
Imports data objects specified in parameter_list from a data cluster stored in storage medium medium with statement EXPORT. If necessary, the data is automatically converted to the current byte order (endian) and character format. The additions conversion_options can be used to make adaptations to the current platform.
System Fields sy-subrcMeaning 0The specified data cluster was found and the content of the parameters in the data cluster was passed to the respective data objects. Nonexistent parameters were ignored. 4The specified data cluster was not found.
If the internal addition USING subr is used, a different rule applies to sy-subrc.



Latest notes:

NON_V5_HINTS
See also Classes for Data Clusters.
ABAP_HINT_END

ABAP_EXAMPLE_VX
Reading of a link table of the ABAP keyword documentation that is buffered in a data cluster of a database table into an internal table.
ABEXA 00321
ABAP_EXAMPLE_END

ABAP_EXAMPLE_V5
Writing and reading of a byte string of two numbers.
ABEXA 01698
ABAP_EXAMPLE_END

Return to menu