EUIATTR

Transparent Table Application Table

Point of Delivery Attributes

EUIATTR is an SAP database table in S/4HANA. Point of Delivery Attributes. It contains 13 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_UtilsPoDAttributes view_entity from BASIC Utilities Point of Delivery Attributes

Fields (13)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY int_ui INT_UI PoD
KEY dateto E_EDMDATETO To-Date
KEY timeto E_EDMTIMETO To-Time
datefrom E_EDMDATEFROM From-Date
timefrom E_EDMTIMEFROM Time from
usagecontext E_USAGECONTEXT Usage Context
dormant E_DORMANT Dormant PoD
int_ui_aggr INT_UI_AGGR Aggr.PoD
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.

-- Point of Delivery Attributes
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE EUIATTR (
    MANDT,         -- Client [MANDT]
    INT_UI,        -- PoD [INT_UI]
    DATETO,        -- To-Date [E_EDMDATETO]
    TIMETO,        -- To-Time [E_EDMTIMETO]
    DATEFROM,      -- From-Date [E_EDMDATEFROM]
    TIMEFROM,      -- Time from [E_EDMTIMEFROM]
    USAGECONTEXT,  -- Usage Context [E_USAGECONTEXT]
    DORMANT,       -- Dormant PoD [E_DORMANT]
    INT_UI_AGGR,   -- Aggr.PoD [INT_UI_AGGR]
    ERDAT,         -- Created On [ERDAT]
    ERNAM,         -- Created By [ERNAM]
    AEDAT,         -- Changed On [AEDAT]
    AENAM,         -- Changed By [AENAM]
    PRIMARY KEY (MANDT, INT_UI, DATETO, TIMETO)
);