cancel
Showing results for 
Search instead for 
Did you mean: 

Error: com.sap.hana.di.cds: exception 1000000: CDS Compiler: not implemented for type kind: 11

former_member603040
Discoverer
0 Kudos

Hi,

Whenever I try to build my .hdbcds-file, it just says that something is not implemented for type kind: 11.

When I remove the association or the series, it works fine, but I have to use both and the series key must be the foreign key to the SeriesIdentifier-entity. Does anyone know how to change either the series or foreign key so that the database will build?

entity SeriesIdentifier {
        key seriesIdentifierId : Integer;
            runId              : association[1] to Run;
            sensorId           : association[1] to Sensors;
    }
    technical configuration {
    column store;
    };
    entity Measurement {
        key measurementId      : Integer;
        seriesIdentifierId : association to SeriesIdentifier;
            time_              : UTCTimestamp;
            value              : Decimal(10, 2);
        series(
            series key (seriesIdentifierId)
            period for series (time_)
            equidistant piecewise
        );
    }
    technical configuration {
    column store;
    };

Accepted Solutions (0)

Answers (0)