Entering content frame

-6001: Duplicate column name Locate the document in its SAP Library structure

Explanation:

  1. The column names of a table must differ from each other. Base tables without user-defined key columns and named result tables contain the implicitly created column SYSKEY.
  2. Named result tables with columns which have not been explicitly named and which do not inherit a column name from the underlying base table, implicitly get the column name EXPRESSION_. _ stands for a positive integer.
  3. A column must not be specified more than once in an <INSERT > or <UPDATE statement> or in a sequence of key specifications (KEY SPEC).

User Action:

  1. Use different column names.
  2. In a <CREATE VIEW> or <QUERY statement>, uniqueness of the column names can be achieved by <REFERENCE NAME> specifications in the selected columns (SELECT COLUMN). In a <CREATE VIEW statement>, uniqueness can also be obtained by <ALIAS NAME> specifications.
  3. Correct the repeated specification of the same column.

 

 

 

Leaving content frame