/APE/PRST_RES

Transparent Table Application Table

Process Step Result

/APE/PRST_RES is an SAP database table in S/4HANA. Process Step Result. It contains 12 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
/APE/E_ProcessStepResults_TP view from EXTENSION Extended Step Results - TP
/APE/I_ProcessStepResults view from BASIC Process Step Results

Fields (12)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY db_key /APE/DE_APPL_DB_KEY
KEY root_key /APE/DE_APPL_DB_KEY
parent_key /APE/DE_APPL_DB_KEY
proc_value_uuid /APE/DE_CONFIG_DB_KEY
exception_code_uuid /APE/DE_CONFIG_DB_KEY
action_assign_uuid /APE/DE_CONFIG_DB_KEY
executed /APE/DE_EXECUTED_FLAG
overruled /APE/DE_OVERRULED_FLAG
execute_tstmp /APE/DE_EXECUTE_TSTMP
dummy_prstres_incl_eew_ps CFD_DUMMY Dummy
_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.

-- Process Step Result
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /APE/PRST_RES (
    CLIENT,                     -- Client [MANDT]
    DB_KEY,                     -- /APE/DE_APPL_DB_KEY
    ROOT_KEY,                   -- /APE/DE_APPL_DB_KEY
    PARENT_KEY,                 -- /APE/DE_APPL_DB_KEY
    PROC_VALUE_UUID,            -- /APE/DE_CONFIG_DB_KEY
    EXCEPTION_CODE_UUID,        -- /APE/DE_CONFIG_DB_KEY
    ACTION_ASSIGN_UUID,         -- /APE/DE_CONFIG_DB_KEY
    EXECUTED,                   -- /APE/DE_EXECUTED_FLAG
    OVERRULED,                  -- /APE/DE_OVERRULED_FLAG
    EXECUTE_TSTMP,              -- /APE/DE_EXECUTE_TSTMP
    DUMMY_PRSTRES_INCL_EEW_PS,  -- Dummy [CFD_DUMMY]
    _DATAAGING,                 -- Data Aging [DATA_TEMPERATURE]
    PRIMARY KEY (CLIENT, DB_KEY, ROOT_KEY)
);