Sycm_Code_Inspector_Content

DDL: SYCM_CODE_INSPECTOR_CONTENT SQL: SYCM_CI_CONTENT Type: view

Content for Code inspector

Sycm_Code_Inspector_Content is a CDS View that provides data about "Content for Code inspector" 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 11 fields with key fields piecelist_id, pgmid, object_type, object_name, int_type.

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_CI_CONTENT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Content for Code inspector view

Fields (11)

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 int_type sycm_plst_subobj int_type Obj. Type
KEY int_name sycm_plst_subobj int_name Key for a Repository object
KEY note Sycm_Simplification_Item note TradeRequest Comment
KEY 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_Code_Inspector_Content.
-- 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_CI_CONTENT

CREATE VIEW Sycm_Code_Inspector_Content 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.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 */
;