SYCM_PLIST_OBJS_SUBOBJS

DDL: SYCM_PLIST_OBJS_SUBOBJS SQL: SYCM_PLIST_SOBJ Type: view

Subobjects with Item, PieceList

SYCM_PLIST_OBJS_SUBOBJS is a CDS View that provides data about "Subobjects with Item, PieceList" in SAP S/4HANA. It reads from 5 data sources (sycm_piecelist, Sycm_Simplification_Item, Sycm_S_Item_Piece_Lists, sycm_sitem_stats, sycm_plst_subobj) and exposes 12 fields with key fields piecelist_id, pgmid, object_type, object_name, hash.

Data Sources (5)

SourceAliasJoin Type
sycm_piecelist plist from
Sycm_Simplification_Item sitem inner
Sycm_S_Item_Piece_Lists sitem_plist inner
sycm_sitem_stats stats inner
sycm_plst_subobj sub left_outer

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName SYCM_PLIST_SOBJ view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Subobjects with Item, PieceList view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY piecelist_id sycm_piecelist piecelist_id GUID 16
KEY pgmid sycm_piecelist pgmid Program Name
KEY object_type sycm_piecelist object_type Type
KEY object_name sycm_piecelist object_name Technical Name
KEY hash sycm_plst_subobj hash Statement Hash
KEY int_type sycm_plst_subobj int_type Obj. Type
KEY int_name sycm_plst_subobj int_name Key for a Repository object
note Sycm_Simplification_Item note TradeRequest Comment
state sycm_sitem_stats state Vehicle Region
release_from sycm_sitem_stats release_from SAP Release
release_to sycm_sitem_stats release_to SAP Release
ps_posid sycm_piecelist ps_posid WBS Element

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view SYCM_PLIST_OBJS_SUBOBJS.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: SYCM_PLIST_SOBJ

CREATE VIEW SYCM_PLIST_OBJS_SUBOBJS AS
SELECT
  plist.piecelist_id AS piecelist_id,
  plist.pgmid AS pgmid,
  plist.object_type AS object_type,
  plist.object_name AS object_name,
  sub.hash AS hash,
  sub.int_type AS int_type,
  sub.int_name AS int_name,
  sitem.note AS note,
  stats.state AS state,
  stats.release_from AS release_from,
  stats.release_to AS release_to,
  plist.ps_posid AS ps_posid
FROM sycm_piecelist AS plist
LEFT OUTER JOIN sycm_plst_subobj AS sub ON /* join condition not captured in parsed metadata */
INNER JOIN Sycm_S_Item_Piece_Lists AS sitem_plist ON /* join condition not captured in parsed metadata */
INNER JOIN sycm_sitem_stats AS stats ON /* join condition not captured in parsed metadata */
INNER JOIN Sycm_Simplification_Item AS sitem ON /* join condition not captured in parsed metadata */
;