SYCM_PLIST_OBJS_SUBS_FULLN_WHU

DDL: SYCM_PLIST_OBJS_SUBS_FULLN_WHU SQL: SYCM_PLST_FULLW Type: view Package: SYCM_SIMPLIFICATION_DB

Objects and subobjects fullnames for WHU

SYCM_PLIST_OBJS_SUBS_FULLN_WHU is a CDS View that provides data about "Objects and subobjects fullnames for WHU" in SAP S/4HANA. It reads from 2 data sources (sycm_plst_fulln, SYCM_PLIST_OBJS_SUBOBJS_WHU) and exposes 12 fields with key fields piecelist_id, pgmid, object_type, object_name, int_type. Part of development package SYCM_SIMPLIFICATION_DB.

Data Sources (2)

SourceAliasJoin Type
sycm_plst_fulln fulln inner
SYCM_PLIST_OBJS_SUBOBJS_WHU plist from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName SYCM_PLST_FULLW view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Objects and subobjects fullnames for WHU view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY piecelist_id SYCM_PLIST_OBJS_SUBOBJS_WHU piecelist_id GUID 16
KEY pgmid SYCM_PLIST_OBJS_SUBOBJS_WHU pgmid Program Name
KEY object_type SYCM_PLIST_OBJS_SUBOBJS_WHU object_type Type
KEY object_name SYCM_PLIST_OBJS_SUBOBJS_WHU object_name Technical Name
KEY int_type SYCM_PLIST_OBJS_SUBOBJS_WHU int_type Obj. Type
KEY int_name
KEY note SYCM_PLIST_OBJS_SUBOBJS_WHU note TradeRequest Comment
sitem_state SYCM_PLIST_OBJS_SUBOBJS_WHU state Vehicle Region
full_name sycm_plst_fulln full_name Name
release_from SYCM_PLIST_OBJS_SUBOBJS_WHU release_from SAP Release
release_to SYCM_PLIST_OBJS_SUBOBJS_WHU release_to SAP Release
ps_posid SYCM_PLIST_OBJS_SUBOBJS_WHU 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_SUBS_FULLN_WHU.
-- 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_PLST_FULLW

CREATE VIEW SYCM_PLIST_OBJS_SUBS_FULLN_WHU AS
SELECT
  plist.piecelist_id AS piecelist_id,
  plist.pgmid AS pgmid,
  plist.object_type AS object_type,
  plist.object_name AS object_name,
  plist.int_type AS int_type,
  cast(plist.int_name as abap.sstring(180)) AS int_name,
  plist.note AS note,
  plist.state AS sitem_state,
  fulln.full_name AS full_name,
  plist.release_from AS release_from,
  plist.release_to AS release_to,
  plist.ps_posid AS ps_posid
FROM SYCM_PLIST_OBJS_SUBOBJS_WHU AS plist
INNER JOIN sycm_plst_fulln AS fulln ON /* join condition not captured in parsed metadata */
;