SYCM_PLIST_PARAM

Transparent Table System Table (transport)

Custom Code Management: Piecelist Parameters

SYCM_PLIST_PARAM is an SAP database table in S/4HANA. Custom Code Management: Piecelist Parameters. It contains 3 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
Sycm_Piece_List_Params view from Custom Code Management: Parameters of a piece list

Fields (3)

KeyField Data ElementDescription DomainTypeLength
KEY piecelist_id guid_32 GUID 16
KEY param_key abap.char
param_value abap.string

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.

-- Custom Code Management: Piecelist Parameters
-- Category TRANSPARENT · Delivery class W
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SYCM_PLIST_PARAM (
    PIECELIST_ID,  -- GUID 16 [guid_32]
    PARAM_KEY,     -- abap.char
    PARAM_VALUE,   -- abap.string
    PRIMARY KEY (PIECELIST_ID, PARAM_KEY)
);