PLMM_AUDIT_ROLES

Transparent Table Application Table

Audit Components-BP-Partner Role

PLMM_AUDIT_ROLES is an SAP database table in S/4HANA. Audit Components-BP-Partner Role. It contains 7 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_FMEAPartner view from BASIC Partner of FMEA
I_FMEATaskPartner view from BASIC Partner of FMEA Task

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY guid PLMT_IDENT Identification
object_guid PLMT_OBJECT_GUID Object
role_sortnr PLMT_ROLE_SORTNR Sort Order
role PLMT_ROLE Role
partner_role PLMT_PARTNER_ROLE Bus.Partnr Role
partner_guid BU_PARTNER_GUID BP GUID

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.

-- Audit Components-BP-Partner Role
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE PLMM_AUDIT_ROLES (
    CLIENT,        -- Client [MANDT]
    GUID,          -- Identification [PLMT_IDENT]
    OBJECT_GUID,   -- Object [PLMT_OBJECT_GUID]
    ROLE_SORTNR,   -- Sort Order [PLMT_ROLE_SORTNR]
    ROLE,          -- Role [PLMT_ROLE]
    PARTNER_ROLE,  -- Bus.Partnr Role [PLMT_PARTNER_ROLE]
    PARTNER_GUID,  -- BP GUID [BU_PARTNER_GUID]
    PRIMARY KEY (CLIENT, GUID)
);