VCM_RT_CHAIN_INS

Transparent Table Application Table

VCM Runtime: Value Chain Instance

VCM_RT_CHAIN_INS is an SAP database table in S/4HANA. VCM Runtime: Value Chain Instance. It contains 11 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
fins_rev_rec_VCMHM_CHAIN view from Value Chain for support purpose
I_ValueChainInstance view from BASIC Value Chain Instance

Fields (11)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY guid vcm_uuid UUID
value_chain_type vcm_value_chain_type Value Chain Type
version vcm_version_number Version
triggering_object_id vcm_business_object_id Business Object
status vcm_value_chain_status Processing Stage
log_handle balloghndl Handle
started_at timestampl Time Stamp
changed_at timestampl Time Stamp
changed_by syuname User Name
search_object_id vcm_business_object_id_conv Business Object

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.

-- VCM Runtime: Value Chain Instance
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE VCM_RT_CHAIN_INS (
    CLIENT,                -- Client [mandt]
    GUID,                  -- UUID [vcm_uuid]
    VALUE_CHAIN_TYPE,      -- Value Chain Type [vcm_value_chain_type]
    VERSION,               -- Version [vcm_version_number]
    TRIGGERING_OBJECT_ID,  -- Business Object [vcm_business_object_id]
    STATUS,                -- Processing Stage [vcm_value_chain_status]
    LOG_HANDLE,            -- Handle [balloghndl]
    STARTED_AT,            -- Time Stamp [timestampl]
    CHANGED_AT,            -- Time Stamp [timestampl]
    CHANGED_BY,            -- User Name [syuname]
    SEARCH_OBJECT_ID,      -- Business Object [vcm_business_object_id_conv]
    PRIMARY KEY (CLIENT, GUID)
);