CNV_2010C_STATE

Transparent Table Temporary Data

Status table for execution of all activities and history

CNV_2010C_STATE is an SAP database table in S/4HANA. Status table for execution of all activities and history. It contains 17 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
CNV_2010C_GL_MAPPING view from GL Accounts Mappings

Fields (17)

KeyField Data ElementDescription DomainTypeLength
KEY mandt MANDT Client
KEY mapping_guid CNV_2010C_GUID Mapping GUID
mapping_name CNV_2010C_MAPPING_NAME Mapping Name
ktopl KTOPL Chart of Accts
mapping_phase CNV_2010C_MPHASE Mapping Phase
progress CNV_2010C_PROGRESS Progress Percentage
conversion_phase CNV_PHASE Phase
state CNV_STATE_2010C State
packid CNV_PACK Pack.no.
cruser CNV_00001_CREATE_USER CreatUser
crtime CNV_TSTART Start time
cotime CNV_TEND Finish Time
spc_activity CNV_2010C_SPC_ACTIVITY SPC Current Activity
spc_status CNV_2010C_SPC_STATUS SPC Status
useralias USALIAS Alias
phase CNV_2010C_DE_IMPL_PHASE Implementation Phase
scenario CNV_2010C_DE_SCENARIO Scenario

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.

-- Status table for execution of all activities and history
-- Category TRANSPARENT · Delivery class L
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE CNV_2010C_STATE (
    MANDT,             -- Client [MANDT]
    MAPPING_GUID,      -- Mapping GUID [CNV_2010C_GUID]
    MAPPING_NAME,      -- Mapping Name [CNV_2010C_MAPPING_NAME]
    KTOPL,             -- Chart of Accts [KTOPL]
    MAPPING_PHASE,     -- Mapping Phase [CNV_2010C_MPHASE]
    PROGRESS,          -- Progress Percentage [CNV_2010C_PROGRESS]
    CONVERSION_PHASE,  -- Phase [CNV_PHASE]
    STATE,             -- State [CNV_STATE_2010C]
    PACKID,            -- Pack.no. [CNV_PACK]
    CRUSER,            -- CreatUser [CNV_00001_CREATE_USER]
    CRTIME,            -- Start time [CNV_TSTART]
    COTIME,            -- Finish Time [CNV_TEND]
    SPC_ACTIVITY,      -- SPC Current Activity [CNV_2010C_SPC_ACTIVITY]
    SPC_STATUS,        -- SPC Status [CNV_2010C_SPC_STATUS]
    USERALIAS,         -- Alias [USALIAS]
    PHASE,             -- Implementation Phase [CNV_2010C_DE_IMPL_PHASE]
    SCENARIO,          -- Scenario [CNV_2010C_DE_SCENARIO]
    PRIMARY KEY (MANDT, MAPPING_GUID)
);