SYCM_PIECELIST

Transparent Table System Table (transport)

Piecelist for Simplification Items

SYCM_PIECELIST is an SAP database table in S/4HANA. Piecelist for Simplification Items. It contains 7 fields. 4 CDS views read from this table.

CDS Views using this table (4)

ViewTypeJoinVDMDescription
Sycm_Code_Inspector_Content view from Content for Code inspector
Sycm_Piece_List view from Custom Code Management: Piece list
SYCM_PLIST_OBJS_SUBOBJS view from Subobjects with Item, PieceList
SYCM_PLIST_OBJS_SUBOBJS_WHU view from Objects and subobjects where used check

Fields (7)

KeyField Data ElementDescription DomainTypeLength
KEY piecelist_id GUID_32 GUID 16
KEY pgmid PGMID Program ID
KEY object_type TROBJTYPE Object Type
KEY object_name TROBJ_NAME Object Name
package_name DEVCLASS Package
application_component UFFCTR Component
ps_posid UFPS_POSID Applic. Component

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.

-- Piecelist for Simplification Items
-- Category TRANSPARENT · Delivery class W
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE SYCM_PIECELIST (
    PIECELIST_ID,           -- GUID 16 [GUID_32]
    PGMID,                  -- Program ID [PGMID]
    OBJECT_TYPE,            -- Object Type [TROBJTYPE]
    OBJECT_NAME,            -- Object Name [TROBJ_NAME]
    PACKAGE_NAME,           -- Package [DEVCLASS]
    APPLICATION_COMPONENT,  -- Component [UFFCTR]
    PS_POSID,               -- Applic. Component [UFPS_POSID]
    PRIMARY KEY (PIECELIST_ID, PGMID, OBJECT_TYPE, OBJECT_NAME)
);