SUP_CHK_REQ

Transparent Table Application Table

SUP Check Request

SUP_CHK_REQ is an SAP database table in S/4HANA. SUP Check Request. It contains 9 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_RevSupProtChkReq view_entity from BASIC Review Supply Protection Check Request

Fields (9)

KeyField Data ElementDescription DomainTypeLength
KEY client mandt Client
KEY uuid sup_chk_req_uuid Check Request UUID
atpprocdrqmtbasicmethodrequuid atp_pr_basic_method_req_uuid Basic Method Request
atpcheckuuid atp_cid Check ID
documentitemid sup_document_item_id Document Item ID
documentid sup_document_id Document ID
documenttype sup_document_type Document Type
restrictedquantity sup_restricted_quantity Restricted Quantity
unitofmeasure sup_restricted_quantity_unit Unit for Rest. Qty

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.

-- SUP Check Request
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SUP_CHK_REQ (
    CLIENT,                          -- Client [mandt]
    UUID,                            -- Check Request UUID [sup_chk_req_uuid]
    ATPPROCDRQMTBASICMETHODREQUUID,  -- Basic Method Request [atp_pr_basic_method_req_uuid]
    ATPCHECKUUID,                    -- Check ID [atp_cid]
    DOCUMENTITEMID,                  -- Document Item ID [sup_document_item_id]
    DOCUMENTID,                      -- Document ID [sup_document_id]
    DOCUMENTTYPE,                    -- Document Type [sup_document_type]
    RESTRICTEDQUANTITY,              -- Restricted Quantity [sup_restricted_quantity]
    UNITOFMEASURE,                   -- Unit for Rest. Qty [sup_restricted_quantity_unit]
    PRIMARY KEY (CLIENT, UUID)
);