Sycm_Simplification_View

DDL: SYCM_SIMPLIFICATION_VIEW SQL: SIMP_VIEW Type: view

Join Simplification DB with SYCM_CUST_REFS, -ENHS and -MODS

Sycm_Simplification_View is a CDS View that provides data about "Join Simplification DB with SYCM_CUST_REFS, -ENHS and -MODS" in SAP S/4HANA. It reads from 12 data sources and exposes 40 fields.

Data Sources (12)

SourceAliasJoin Type
sycm_cust_refs cust_refs inner
sycm_cust_refs cust_refs inner
sycm_cust_state cust_state left_outer
sycm_cust_state cust_state left_outer
Sycm_S_Item_Piece_Lists item_plist inner
Sycm_S_Item_Piece_Lists item_plist inner
Sycm_Piece_List plist inner
Sycm_Piece_List plist inner
Sycm_Available_Sap_Notes sap_notes left_outer
Sycm_Available_Sap_Notes sap_notes left_outer
Sycm_S_Item_Status status inner
Sycm_S_Item_Status status inner

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SIMP_VIEW view
ClientDependent false view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Join Simplification DB with SYCM_CUST_REFS, -ENHS and -MODS view

Fields (40)

KeyFieldSource TableSource FieldDescription
id item id WorklistID
version item version XML Vers.
note item note TradeRequest Comment
status Sycm_S_Item_Status status Workflow Status
release_from Sycm_S_Item_Status release_from SAP Release
release_to Sycm_S_Item_Status release_to SAP Release
hash sycm_cust_refs hash Statement Hash
ref_obj_type sycm_cust_refs ref_obj_type Ref. procedure
ref_obj_name sycm_cust_refs ref_obj_name Object Name
ref_sub_type sycm_cust_refs ref_sub_type Object Type
ref_sub_name sycm_cust_refs ref_sub_name Object name in SUBKEY
ref_int_type sycm_cust_refs ref_int_type Obj. Type
ref_int_name sycm_cust_refs ref_int_name Key for a Repository object
obj_type sycm_cust_refs obj_type Type
obj_name sycm_cust_refs obj_name Object Name
sub_type sycm_cust_refs sub_type Object Type
sub_name sycm_cust_refs sub_name Object name in SUBKEY
include_name sycm_cust_refs include_name Structure
cust_genflag sycm_cust_refs genflag Generation Flag
cust_dlvunit sycm_cust_refs dlvunit Softw. Comp.
id item id WorklistID
version item version XML Vers.
note item note TradeRequest Comment
status Sycm_S_Item_Status status Workflow Status
release_from Sycm_S_Item_Status release_from SAP Release
release_to Sycm_S_Item_Status release_to SAP Release
hash sycm_cust_refs hash Statement Hash
ref_obj_type sycm_cust_refs ref_obj_type Ref. procedure
ref_obj_name sycm_cust_refs ref_obj_name Object Name
ref_sub_type sycm_cust_refs ref_sub_type Object Type
ref_sub_name sycm_cust_refs ref_sub_name Object name in SUBKEY
ref_int_type sycm_cust_refs ref_int_type Obj. Type
ref_int_name sycm_cust_refs ref_int_name Key for a Repository object
obj_type sycm_cust_refs obj_type Type
obj_name sycm_cust_refs obj_name Object Name
sub_type sycm_cust_refs sub_type Object Type
sub_name sycm_cust_refs sub_name Object name in SUBKEY
include_name sycm_cust_refs include_name Structure
cust_genflag sycm_cust_refs genflag Generation Flag
cust_dlvunit sycm_cust_refs dlvunit Softw. Comp.

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_View.
-- 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: SIMP_VIEW

CREATE VIEW Sycm_Simplification_View AS
SELECT
  item.id AS id,
  item.version AS version,
  item.note AS note,
  status.status AS status,
  status.release_from AS release_from,
  status.release_to AS release_to,
  cust_refs.hash AS hash,
  cust_refs.ref_obj_type AS ref_obj_type,
  cust_refs.ref_obj_name AS ref_obj_name,
  cust_refs.ref_sub_type AS ref_sub_type,
  cust_refs.ref_sub_name AS ref_sub_name,
  cust_refs.ref_int_type AS ref_int_type,
  cust_refs.ref_int_name AS ref_int_name,
  cust_refs.obj_type AS obj_type,
  cust_refs.obj_name AS obj_name,
  cust_refs.sub_type AS sub_type,
  cust_refs.sub_name AS sub_name,
  cust_refs.include_name AS include_name,
  cust_refs.genflag AS cust_genflag,
  cust_refs.dlvunit AS cust_dlvunit
INNER JOIN Sycm_S_Item_Status AS status ON /* join condition not captured in parsed metadata */
INNER JOIN Sycm_S_Item_Piece_Lists AS item_plist ON /* join condition not captured in parsed metadata */
INNER JOIN Sycm_Piece_List AS plist ON /* join condition not captured in parsed metadata */
INNER JOIN sycm_cust_refs AS cust_refs ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN Sycm_Available_Sap_Notes AS sap_notes ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN sycm_cust_state AS cust_state ON /* join condition not captured in parsed metadata */
;