SALESDOC

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

Fields (8)

KeyField CDS FieldsUsed in Views
KEY ScheduleLine MRPElementScheduleLine 1
KEY SDDocumentCategory Level1DocumentCategory 1
BaseUnit MaterialBaseUnit 1
BillingCompanyCode CompanyCode 1
OpenReqdDelivQtyInBaseUnit MRPRequiredQuantityInBaseUnit 1
ProductAvailabilityDate MatlCompRequirementDate 1
SalesOrganization SalesOrganization 1
SDPricingProcedure SDPricingProcedure 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 SALESDOC (
    SCHEDULELINE,
    SDDOCUMENTCATEGORY,
    BASEUNIT,
    BILLINGCOMPANYCODE,
    OPENREQDDELIVQTYINBASEUNIT,
    PRODUCTAVAILABILITYDATE,
    SALESORGANIZATION,
    SDPRICINGPROCEDURE,
    PRIMARY KEY (SCHEDULELINE, SDDOCUMENTCATEGORY)
);