DAC_D_PURDOC

Transparent Table Application Table

Digital Access of Procurement Document

DAC_D_PURDOC is an SAP database table in S/4HANA. Digital Access of Procurement Document. It contains 9 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_DgtlAccLicProcurementDoc view from BASIC Digital Access Logging Table for Procurement Document

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY uniqueid procmtmsmtobjectrootid Object ID
KEY document_type rsuvm_unit Unit
KEY node_type sbo_node_type SAP Obj Node Type
KEY action_type dac_action_type Act Type
KEY instance_count int4 INT4
KEY erdat erdat Created On
KEY erzet erzet Time
_dataaging data_temperature Data Aging

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.

-- Digital Access of Procurement Document
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE DAC_D_PURDOC (
    CLIENT,          -- Client [mandt]
    UNIQUEID,        -- Object ID [procmtmsmtobjectrootid]
    DOCUMENT_TYPE,   -- Unit [rsuvm_unit]
    NODE_TYPE,       -- SAP Obj Node Type [sbo_node_type]
    ACTION_TYPE,     -- Act Type [dac_action_type]
    INSTANCE_COUNT,  -- INT4 [int4]
    ERDAT,           -- Created On [erdat]
    ERZET,           -- Time [erzet]
    _DATAAGING,      -- Data Aging [data_temperature]
    PRIMARY KEY (CLIENT, UNIQUEID, DOCUMENT_TYPE, NODE_TYPE, ACTION_TYPE, INSTANCE_COUNT, ERDAT, ERZET)
);