USR_EXTUID

Transparent Table Application Table

Externe UID

USR_EXTUID is an SAP database table in S/4HANA. Externe UID. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_USR_EXTUID view from BASIC Externe UID

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY bname xubname User
KEY extuid_type suid_extuid_type Type of External UID
extuid suid_extuid External UID

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.

-- Externe UID
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE USR_EXTUID (
    MANDT,        -- Client [mandt]
    BNAME,        -- User [xubname]
    EXTUID_TYPE,  -- Type of External UID [suid_extuid_type]
    EXTUID,       -- External UID [suid_extuid]
    PRIMARY KEY (MANDT, BNAME, EXTUID_TYPE)
);