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)
);