I_CmplProcessFlowPreceding

DDL: I_CMPLPROCESSFLOWPRECEDING Type: view_entity COMPOSITE Package: VDM_CMH_SD

Hierarchy data provider for CMH

I_CmplProcessFlowPreceding is a Composite CDS View that provides data about "Hierarchy data provider for CMH" in SAP S/4HANA. It reads from 1 data source (I_SDDocumentMultiLevelProcFlow) and exposes 6 fields with key field DocRelationshipUUID. It has 1 association to related views. Part of development package VDM_CMH_SD.

Data Sources (1)

SourceAliasJoin Type
I_SDDocumentMultiLevelProcFlow I_SDDocumentMultiLevelProcFlow from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_CmplProcessFlowPreceding _CmplProcessFlowPreceding $projection.SubsequentDocument = _CmplProcessFlowPreceding.PrecedingDocument and $projection.SubsequentDocumentItem = _CmplProcessFlowPreceding.PrecedingDocumentItem

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #COMPOSITE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY DocRelationshipUUID DocRelationshipUUID SM Doc Rel UUID
PrecedingDocument PrecedingDocument SD Document
PrecedingDocumentItem PrecedingDocumentItem Item
SubsequentDocument SubsequentDocument SD Sched. Agmt
SubsequentDocumentItem SubsequentDocumentItem Subsequent Item
_CmplProcessFlowPreceding _CmplProcessFlowPreceding

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 I_CmplProcessFlowPreceding.
-- 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.

CREATE VIEW I_CmplProcessFlowPreceding AS
SELECT
  DocRelationshipUUID,
  PrecedingDocument,
  PrecedingDocumentItem,
  SubsequentDocument,
  SubsequentDocumentItem
FROM I_SDDocumentMultiLevelProcFlow
LEFT OUTER JOIN I_CmplProcessFlowPreceding AS _CmplProcessFlowPreceding ON SubsequentDocument = _CmplProcessFlowPreceding.PrecedingDocument AND SubsequentDocumentItem = _CmplProcessFlowPreceding.PrecedingDocumentItem  -- association [1..*]
;