TFPLB

Transparent Table Customizing (protected)

Billing Plan Type: Description

TFPLB is an SAP database table in S/4HANA. Billing Plan Type: Description. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_BillingPlanTypeText view_entity from BASIC Billing Plan Type - Text

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY spras spras Language
KEY fpart fpart BillingPlanType
fpbez fpbez BillingPlanType

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.

-- Billing Plan Type: Description
-- Category TRANSPARENT · Delivery class G
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE TFPLB (
    MANDT,  -- Client [mandt]
    SPRAS,  -- Language [spras]
    FPART,  -- BillingPlanType [fpart]
    FPBEZ,  -- BillingPlanType [fpbez]
    PRIMARY KEY (MANDT, SPRAS, FPART)
);