Sycm_Simplification_Db_View

DDL: SYCM_SIMPLIFICATION_DB_VIEW SQL: SIMP_DB_VIEW Type: view Package: SYCM_SIMPLIFICATION_DB

View on simplificationDB without joining customer references

Sycm_Simplification_Db_View is a CDS View that provides data about "View on simplificationDB without joining customer references" in SAP S/4HANA. It reads from 4 data sources (Sycm_S_Item_Piece_Lists, Sycm_Plist_Objs_With_Subobjs, Sycm_Available_Sap_Notes, Sycm_S_Item_Status) and exposes 11 fields with key fields id, version, status, ref_obj_type, ref_obj_name. Part of development package SYCM_SIMPLIFICATION_DB.

Data Sources (4)

SourceAliasJoin Type
Sycm_S_Item_Piece_Lists item_plist inner
Sycm_Plist_Objs_With_Subobjs plist_with_subobj inner
Sycm_Available_Sap_Notes sap_notes left_outer
Sycm_S_Item_Status status inner

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName SIMP_DB_VIEW view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label View on simplificationDB without joining customer references view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY id item id WorklistID
KEY version item version XML Vers.
KEY status Sycm_S_Item_Status status Workflow Status
KEY ref_obj_type Sycm_Plist_Objs_With_Subobjs object_type Type
KEY ref_obj_name Sycm_Plist_Objs_With_Subobjs object_name Technical Name
KEY ref_int_type Sycm_Plist_Objs_With_Subobjs int_type Obj. Type
KEY ref_int_name Sycm_Plist_Objs_With_Subobjs int_name Key for a Repository object
note item note TradeRequest Comment
release_from Sycm_S_Item_Status release_from SAP Release
release_to Sycm_S_Item_Status release_to SAP Release
ps_posid Sycm_Plist_Objs_With_Subobjs 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_Simplification_Db_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_DB_VIEW

CREATE VIEW Sycm_Simplification_Db_View AS
SELECT
  item.id AS id,
  item.version AS version,
  status.status AS status,
  plist_with_subobj.object_type AS ref_obj_type,
  plist_with_subobj.object_name AS ref_obj_name,
  plist_with_subobj.int_type AS ref_int_type,
  plist_with_subobj.int_name AS ref_int_name,
  item.note AS note,
  status.release_from AS release_from,
  status.release_to AS release_to,
  plist_with_subobj.ps_posid AS ps_posid
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_Plist_Objs_With_Subobjs AS plist_with_subobj 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 */
;