POC_C_PHASE

Transparent Table Customizing Table

Process Definition: Phase

POC_C_PHASE is an SAP database table in S/4HANA. Process Definition: Phase. It contains 4 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ProcMonPhase view from BASIC Process Observer: Phases

Fields (4)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY process_type_id poc_process_type_id Process Def. ID
KEY phase poc_phase Phase
phase_order poc_phase_order Phase Order

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 Definition: Phase
-- Category TRANSPARENT · Delivery class C
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE POC_C_PHASE (
    MANDT,            -- Client [mandt]
    PROCESS_TYPE_ID,  -- Process Def. ID [poc_process_type_id]
    PHASE,            -- Phase [poc_phase]
    PHASE_ORDER,      -- Phase Order [poc_phase_order]
    PRIMARY KEY (MANDT, PROCESS_TYPE_ID, PHASE)
);