SDBP_ITM_USAGE

Transparent Table System Table (SAP only)

Billing Plan: Allowed item usages

SDBP_ITM_USAGE is an SAP database table in S/4HANA. Billing Plan: Allowed item usages. It contains 2 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_BillingPlanItemUsage view from BASIC Billing Plan Item Usage

Fields (2)

KeyField Data ElementDescription DomainTypeLength
KEY bpcat sdbp_bpcat BillingPlanUCat
KEY item_usage sdbp_item_usage Usage

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: Allowed item usages
-- Category TRANSPARENT · Delivery class S
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SDBP_ITM_USAGE (
    BPCAT,       -- BillingPlanUCat [sdbp_bpcat]
    ITEM_USAGE,  -- Usage [sdbp_item_usage]
    PRIMARY KEY (BPCAT, ITEM_USAGE)
);