Sycm_Simplification_Item

DDL: SYCM_SIMPLIFICATION_ITEM SQL: SYCMVSITEM Type: view

Simplification Item

Sycm_Simplification_Item is a CDS View that provides data about "Simplification Item" in SAP S/4HANA. It reads from 1 data source (sycm_sitem) and exposes 10 fields with key fields id, version. It has 6 associations to related views.

Data Sources (1)

SourceAliasJoin Type
sycm_sitem header from

Associations (6)

CardinalityTargetAliasCondition
[0..*] Sycm_S_Item_Areas _Areas header.id = _Areas.id and header.version = _Areas.version
[0..*] Sycm_S_Item_Entry_Points _Entry_Points header.id = _Entry_Points.id and header.version = _Entry_Points.version
[0..*] Sycm_S_Item_Packages _Packages header.id = _Packages.id and header.version = _Packages.version
[0..*] Sycm_S_Item_Piece_Lists _Piece_Lists header.id = _Piece_Lists.id and header.version = _Piece_Lists.version
[0..*] Sycm_S_Item_Status _Status header.id = _Status.id and header.version = _Status.version
[0..*] sycm_simplification_item _Replacement _Replacement.id = header.replacement_id

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SYCMVSITEM view
ClientDependent true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Simplification Item view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY id sycm_sitem id WorklistID
KEY version sycm_sitem version XML Vers.
title sycm_sitem title View Title
note sycm_sitem note TradeRequest Comment
_Areas _Areas
_Entry_Points _Entry_Points
_Packages _Packages
_Piece_Lists _Piece_Lists
_Status _Status
_Replacement _Replacement

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_Simplification_Item.
-- 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: SYCMVSITEM

CREATE VIEW Sycm_Simplification_Item AS
SELECT
  header.id AS id,
  header.version AS version,
  header.title AS title,
  header.note AS note
FROM sycm_sitem AS header
LEFT OUTER JOIN Sycm_S_Item_Areas AS _Areas ON header.id = _Areas.id AND header.version = _Areas.version  -- association [0..*]
LEFT OUTER JOIN Sycm_S_Item_Entry_Points AS _Entry_Points ON header.id = _Entry_Points.id AND header.version = _Entry_Points.version  -- association [0..*]
LEFT OUTER JOIN Sycm_S_Item_Packages AS _Packages ON header.id = _Packages.id AND header.version = _Packages.version  -- association [0..*]
LEFT OUTER JOIN Sycm_S_Item_Piece_Lists AS _Piece_Lists ON header.id = _Piece_Lists.id AND header.version = _Piece_Lists.version  -- association [0..*]
LEFT OUTER JOIN Sycm_S_Item_Status AS _Status ON header.id = _Status.id AND header.version = _Status.version  -- association [0..*]
LEFT OUTER JOIN sycm_simplification_item AS _Replacement ON _Replacement.id = header.replacement_id  -- association [0..*]
;