DPR_PRIORITY_T

Transparent Table Customizing Table

Description of priority

DPR_PRIORITY_T is an SAP database table in S/4HANA. Description of priority. It contains 4 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
I_DevProjectPriorityCodeText view_entity from BASIC Dev Project Priority Code - Text
I_EntProjectPriorityCodeText view from BASIC Priority for Enterprise Projects - Text
I_PPM_PriorityText view from BASIC Text for Project Element Priorities

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY language langu Language
KEY priority dpr_tv_priority_cust Priority
text dpr_tv_text Name

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.

-- Description of priority
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE DPR_PRIORITY_T (
    CLIENT,    -- Client [mandt]
    LANGUAGE,  -- Language [langu]
    PRIORITY,  -- Priority [dpr_tv_priority_cust]
    TEXT,      -- Name [dpr_tv_text]
    PRIMARY KEY (CLIENT, LANGUAGE, PRIORITY)
);