Sycm_S_Item_Status

DDL: SYCM_S_ITEM_STATUS SQL: SYCMVSITEM_STATS Type: view

Status assigned to a Simplification Item

Sycm_S_Item_Status is a CDS View that provides data about "Status assigned to a Simplification Item" in SAP S/4HANA. It reads from 1 data source (sycm_sitem_stats) and exposes 5 fields with key fields id, version, status.

Data Sources (1)

SourceAliasJoin Type
sycm_sitem_stats sycm_sitem_stats from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SYCMVSITEM_STATS view
ClientDependent false view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Status assigned to a Simplification Item view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY id sycm_sitem_stats id WorklistID
KEY version sycm_sitem_stats version XML Vers.
KEY status sycm_sitem_stats state Vehicle Region
release_from sycm_sitem_stats release_from SAP Release
release_to sycm_sitem_stats release_to SAP Release

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_S_Item_Status.
-- 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_STATS

CREATE VIEW Sycm_S_Item_Status AS
SELECT
  sycm_sitem_stats.id AS id,
  sycm_sitem_stats.version AS version,
  sycm_sitem_stats.state AS status,
  sycm_sitem_stats.release_from AS release_from,
  sycm_sitem_stats.release_to AS release_to
FROM sycm_sitem_stats
;