I_CmplProcessFlowSubsequent

DDL: I_CMPLPROCESSFLOWSUBSEQUENT Type: view_entity COMPOSITE

Process Flow entity for subsequent docs

I_CmplProcessFlowSubsequent is a Composite CDS View that provides data about "Process Flow entity for subsequent docs" in SAP S/4HANA. It reads from 1 data source (I_SDDocumentMultiLevelProcFlow) and exposes 8 fields with key field DocRelationshipUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SDDocumentMultiLevelProcFlow I_SDDocumentMultiLevelProcFlow from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_CmplProcessFlowSubsequent _CmplProcessFlowSubsequent $projection.PrecedingDocument = _CmplProcessFlowSubsequent.SubsequentDocument and $projection.PrecedingDocumentItem = _CmplProcessFlowSubsequent.SubsequentDocumentItem

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
Metadata.ignorePropagatedAnnotations true view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #COMPOSITE view
EndUserText.label Process Flow entity for subsequent docs view

Fields (8)

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
PrecedingDocumentCategory PrecedingDocumentCategory Prec.Doc.Categ.
SubsequentDocumentCategory SubsequentDocumentCategory Subs.Doc.Categ.
_CmplProcessFlowSubsequent _CmplProcessFlowSubsequent

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_CmplProcessFlowSubsequent.
-- 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_CmplProcessFlowSubsequent AS
SELECT
  DocRelationshipUUID,
  PrecedingDocument,
  PrecedingDocumentItem,
  SubsequentDocument,
  SubsequentDocumentItem,
  PrecedingDocumentCategory,
  SubsequentDocumentCategory
FROM I_SDDocumentMultiLevelProcFlow
LEFT OUTER JOIN I_CmplProcessFlowSubsequent AS _CmplProcessFlowSubsequent ON PrecedingDocument = _CmplProcessFlowSubsequent.SubsequentDocument AND PrecedingDocumentItem = _CmplProcessFlowSubsequent.SubsequentDocumentItem  -- association [1..*]
;