KBKO

Transparent Table Application Table

Header Record for Capacity Requirements

KBKO is an SAP database table in S/4HANA. Header Record for Capacity Requirements. It contains 2 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_CapacityRequirement view from BASIC Capacity Requirement Header
I_SchedProdnCapacityRqmt view from BASIC Scheduled Production Capacity Requirement

Fields (2)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY bedid bedid Capacity Requirement

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.

-- Header Record for Capacity Requirements
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE KBKO (
    MANDT,  -- Client [mandt]
    BEDID,  -- Capacity Requirement [bedid]
    PRIMARY KEY (MANDT, BEDID)
);