LEVEL10

LEVEL10 is an SAP database table in S/4HANA. It contains 4 fields.

Fields (4)

KeyField CDS FieldsUsed in Views
KEY SalesContract SalesContract 1
KEY SubsequentDocument PrecedingDocument 1
KEY SubsequentDocumentCategory PrecedingDocumentCategory 1
KEY SubsequentDocumentItem PrecedingDocumentItem,SubsequentDocumentItem 1

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE LEVEL10 (
    SALESCONTRACT,
    SUBSEQUENTDOCUMENT,
    SUBSEQUENTDOCUMENTCATEGORY,
    SUBSEQUENTDOCUMENTITEM,
    PRIMARY KEY (SALESCONTRACT, SUBSEQUENTDOCUMENT, SUBSEQUENTDOCUMENTCATEGORY, SUBSEQUENTDOCUMENTITEM)
);