BPPURGCAT

Transparent Table Application Table

Business Partner Purchasing Category

BPPURGCAT is an SAP database table in S/4HANA. Business Partner Purchasing Category. It contains 3 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_BPPurchasingCategory view_entity from BASIC BP Purchasing Category

Fields (3)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY partner BU_PARTNER Bus. Partner
KEY purgcatuuid VDM_PURCHASINGCATEGORY_UUID Purg Category UUID

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.

-- Business Partner Purchasing Category
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE BPPURGCAT (
    CLIENT,       -- Client [MANDT]
    PARTNER,      -- Bus. Partner [BU_PARTNER]
    PURGCATUUID,  -- Purg Category UUID [VDM_PURCHASINGCATEGORY_UUID]
    PRIMARY KEY (CLIENT, PARTNER, PURGCATUUID)
);