ISLM_PREREQ_CHK

Transparent Table Application Table

Prerequisite Checks of Intelligent Scenario

ISLM_PREREQ_CHK is an SAP database table in S/4HANA. Prerequisite Checks of Intelligent Scenario. It contains 9 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ISLM_P_PREREQ_CHK view_entity from Prerequisite check

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY mandt mandt Client
KEY guid islm2_de_guid GUID
check_run_guid islm2_de_chk_run_guid Check Run GUID
name islm2_de_check_name Check Name
description islm_de_check_description Check Description
is_mandatory islm_de_mandatory Mandatory
check_type islm_de_check_type Check Type
status islm_de_check_status Check Status
addl_info islm2_de_json Serialized JSON

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.

-- Prerequisite Checks of Intelligent Scenario
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE ISLM_PREREQ_CHK (
    MANDT,           -- Client [mandt]
    GUID,            -- GUID [islm2_de_guid]
    CHECK_RUN_GUID,  -- Check Run GUID [islm2_de_chk_run_guid]
    NAME,            -- Check Name [islm2_de_check_name]
    DESCRIPTION,     -- Check Description [islm_de_check_description]
    IS_MANDATORY,    -- Mandatory [islm_de_mandatory]
    CHECK_TYPE,      -- Check Type [islm_de_check_type]
    STATUS,          -- Check Status [islm_de_check_status]
    ADDL_INFO,       -- Serialized JSON [islm2_de_json]
    PRIMARY KEY (MANDT, GUID)
);