/APE/CHKRES

Transparent Table Control Table (SAP+Cust)

Check Result

/APE/CHKRES is an SAP database table in S/4HANA. Check Result. It contains 10 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
/APE/I_CheckResult view from BASIC Check Result
/APE/I_CheckResult_C view_entity from BASIC Check Result

Fields (10)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY config_key /APE/DE_CONFIG_DB_KEY
check_result /APE/DE_CHECK_RESULT
market_role /APE/DE_MARKET_ROLE
config_layer /APE/DE_CONFIG_LAYER
deploy_target /APE/DE_DEPLOYMENT_TARGET
created_at /APE/DE_ADM_CREATED_AT
created_by /APE/DE_ADM_CREATED_BY
changed_at /APE/DE_ADM_CHANGED_AT
changed_by /APE/DE_ADM_CHANGED_BY

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.

-- Check Result
-- Category TRANSPARENT · Delivery class E
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE /APE/CHKRES (
    CLIENT,         -- Client [MANDT]
    CONFIG_KEY,     -- /APE/DE_CONFIG_DB_KEY
    CHECK_RESULT,   -- /APE/DE_CHECK_RESULT
    MARKET_ROLE,    -- /APE/DE_MARKET_ROLE
    CONFIG_LAYER,   -- /APE/DE_CONFIG_LAYER
    DEPLOY_TARGET,  -- /APE/DE_DEPLOYMENT_TARGET
    CREATED_AT,     -- /APE/DE_ADM_CREATED_AT
    CREATED_BY,     -- /APE/DE_ADM_CREATED_BY
    CHANGED_AT,     -- /APE/DE_ADM_CHANGED_AT
    CHANGED_BY,     -- /APE/DE_ADM_CHANGED_BY
    PRIMARY KEY (CLIENT, CONFIG_KEY)
);