ABAP Runtime Errors

INCL_ITAB_TYPE_CONFLICT SAP ABAP Runtime Error incl itab type conflict







INCL_ITAB_TYPE_CONFLICT 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: & - Text Include (no Short Dump, only Text Module)

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.


INCL_ITAB_TYPE_CONFLICT ABAP Runtime Error

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

In this case the following conditions have not been met: <runtime parameter>

(1) The types of access declared for the tables are not compatible. The compatibility rules are determined by the following hierarchy:

ANY_TABLE (INDEX_TABLE (STANDARD_TABLE, SORTED_TABLE), HASHED_TABLE)

A concrete type of access is only compatible with its predecessors in the hierarchy (example: STANDARD_TABLE is compatible with INDEX_TABLE and ANY_TABLE but incompatible with HASHED_TABLE.

(2) The row types of both tables are not compatible.

(3) The table keys of both tables do not match.

(4) One of the tables was defined with a unique key (UNIQUE), the other one with a non-unique key (NON-UNIQUE).

(5) The primary keys of both table types are defined with a different alias.

(6) The two table types contain a different number of keys.

(7) The key (<runtime parameter>) has been defined differently in both table types.

(8) The key (<runtime parameter>) is not included in both table types.