T439G

Transparent Table Customizing Table

PP Planning periods: header table

T439G is an SAP database table in S/4HANA. PP Planning periods: header table. It contains 9 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
C_Plngcyctemp view from CONSUMPTION Planning Period View
I_MRPPlanningPeriod view from BASIC MRP Planning Period

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY werks WERKS_D Plant
KEY mrppp MRPPP Plan. Calendar
mrpps MRPPS Calculatn Rule
fcopt FCOPT Working Day
calhz CALHZ Minimum Period
datuv DATUV Valid From
datub DATUB to
erfdt ERFDT Entered On

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.

-- PP Planning periods: header table
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE T439G (
    MANDT,  -- Client [MANDT]
    WERKS,  -- Plant [WERKS_D]
    MRPPP,  -- Plan. Calendar [MRPPP]
    MRPPS,  -- Calculatn Rule [MRPPS]
    FCOPT,  -- Working Day [FCOPT]
    CALHZ,  -- Minimum Period [CALHZ]
    DATUV,  -- Valid From [DATUV]
    DATUB,  -- to [DATUB]
    ERFDT,  -- Entered On [ERFDT]
    PRIMARY KEY (MANDT, WERKS, MRPPP)
);