COBCH1874 Data item or typedef has same name as existing typedef data-name

The program contains an existing typedef name used as the name of a new data item. This is not allowed.

Resolution:

Correct the code; then recompile.

Example:

The following example shows the X1 data item defined twice.

       01 x1 binary-long typedef.
       01 x1 pic x(10) value "Hello".
           display x1