ABAP Runtime Errors

EXPORT_INCL_TABLE_STRUCTURE SAP ABAP Runtime Error export incl table structure







EXPORT_INCL_TABLE_STRUCTURE is an ABAP runtime error which you may come across when using or developing within an SAP system. See below for the standard details explaining what it means and how you can avoid or fix this runtime error.

Short Dump Classification: A - ABAP Programming Error

You can view further information about a runtme error by using transaction code ST22 which will show you this and all runtime erros that have happen in your SAP system.

Also check out the Comments section below to view or add related contributions and example screen shots.


EXPORT_INCL_TABLE_STRUCTURE ABAP Runtime Error

Tables that EXPORT/IMPORT operations are performed on should have the following structure:

Field name Field type
1. MANDT CLNT Key field
2. RELID CHAR(2) Key field
3. File-specific key (one or more CHAR fields)
4. SRTF2 INT4 Key field
5. Further fields, not part of the key
6. CLUSTR INT2 (length field for EXPORT/IMPORT data)
7. CLUSTD VARC or LRAW (container for EXPORT/IMPORT data)

In non-client specific tables, the MANDT field can be left out. For compatibility reasons, field SRTF2 can also be of type INT1. New tables should always be created with INT4 however. Please see search hints for more details about the possible cause of this runtime error and how it could be avoided.

Please see send to sap for more details about the possible cause of this runtime error and how it could be avoided.

Table <runtime parameter> does not permit EXPORT/IMPORT operations. Please see abap error for more details about the possible cause of this runtime error and how it could be avoided.

An attempt was made to perform an EXPORT or IMPORT operation on table <runtime parameter>. The table does not have the right structure for this however. Please see installation error for more details about the possible cause of this runtime error and how it could be avoided.