EPROFASS

Transparent Table Application Table

Allocation of Profiles

EPROFASS is an SAP database table in S/4HANA. Allocation of Profiles. It contains 15 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_UtilsRegTmeSersAllocation view_entity from BASIC Register time series allocation

Fields (15)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY logikzw LOGIKZW Logical reg.no.
KEY profrole PROFROLE Role
KEY dateto E_EDMDATETO To-Date
KEY timeto E_EDMTIMETO To-Time
KEY roleno E_ROLENO Cons. No.
datefrom E_EDMDATEFROM From-Date
timefrom E_EDMTIMEFROM Time from
profile E_PROFILE Profile
contextcategory E_CONTEXTCATEGORY Cont. Cat.
profrolecontext PROFROLECONTEXT Prof.All.Contxt
erdat ERDAT Created On
ernam ERNAM Created By
aedat AEDAT Changed On
aenam AENAM Changed By

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.

-- Allocation of Profiles
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE EPROFASS (
    MANDT,            -- Client [MANDT]
    LOGIKZW,          -- Logical reg.no. [LOGIKZW]
    PROFROLE,         -- Role [PROFROLE]
    DATETO,           -- To-Date [E_EDMDATETO]
    TIMETO,           -- To-Time [E_EDMTIMETO]
    ROLENO,           -- Cons. No. [E_ROLENO]
    DATEFROM,         -- From-Date [E_EDMDATEFROM]
    TIMEFROM,         -- Time from [E_EDMTIMEFROM]
    PROFILE,          -- Profile [E_PROFILE]
    CONTEXTCATEGORY,  -- Cont. Cat. [E_CONTEXTCATEGORY]
    PROFROLECONTEXT,  -- Prof.All.Contxt [PROFROLECONTEXT]
    ERDAT,            -- Created On [ERDAT]
    ERNAM,            -- Created By [ERNAM]
    AEDAT,            -- Changed On [AEDAT]
    AENAM,            -- Changed By [AENAM]
    PRIMARY KEY (MANDT, LOGIKZW, PROFROLE, DATETO, TIMETO, ROLENO)
);