T433

Transparent Table Customizing Table

Milestone Indicator

T433 is an SAP database table in S/4HANA. Milestone Indicator. It contains 6 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_BillingPlanMilestoneUsage view from BASIC Billing Plan Milestone Usage
I_Projectmilestoneusage view from BASIC Project Milestone Usage

Fields (6)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY mlstn milestone Usage
mlskz mlskz Start/Finish
fpart fpart BillingPlanType
fpttp fpttp Date category
suppress_dialog cnms_suppress_dialog Without dialog

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.

-- Milestone Indicator
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE T433 (
    MANDT,            -- Client [mandt]
    MLSTN,            -- Usage [milestone]
    MLSKZ,            -- Start/Finish [mlskz]
    FPART,            -- BillingPlanType [fpart]
    FPTTP,            -- Date category [fpttp]
    SUPPRESS_DIALOG,  -- Without dialog [cnms_suppress_dialog]
    PRIMARY KEY (MANDT, MLSTN)
);