CIC_DOC_FLOW_FILTER

DDL: CIC_DOC_FLOW_FILTER Type: view_entity

CIC Projection for Document Flow Filter

CIC_DOC_FLOW_FILTER is a CDS View that provides data about "CIC Projection for Document Flow Filter" in SAP S/4HANA. It reads from 1 data source (I_SDDocumentMultiLevelProcFlow) and exposes 8 fields with key field DocRelationshipUUID.

Data Sources (1)

SourceAliasJoin Type
I_SDDocumentMultiLevelProcFlow currentDocFlow from

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CIC Projection for Document Flow Filter view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY DocRelationshipUUID I_SDDocumentMultiLevelProcFlow DocRelationshipUUID SM Doc Rel UUID
PrecedingDocument I_SDDocumentMultiLevelProcFlow PrecedingDocument SD Document
PrecedingDocumentItem I_SDDocumentMultiLevelProcFlow PrecedingDocumentItem Item
PrecedingDocumentCategory I_SDDocumentMultiLevelProcFlow PrecedingDocumentCategory Prec.Doc.Categ.
SubsequentDocument I_SDDocumentMultiLevelProcFlow SubsequentDocument SD Sched. Agmt
SubsequentDocumentItem I_SDDocumentMultiLevelProcFlow SubsequentDocumentItem Subsequent Item
SubsequentDocumentCategory I_SDDocumentMultiLevelProcFlow SubsequentDocumentCategory Subs.Doc.Categ.
ProcessFlowLevel I_SDDocumentMultiLevelProcFlow ProcessFlowLevel Level Number

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 CIC_DOC_FLOW_FILTER.
-- 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 CIC_DOC_FLOW_FILTER AS
SELECT
  currentDocFlow.DocRelationshipUUID AS DocRelationshipUUID,
  currentDocFlow.PrecedingDocument AS PrecedingDocument,
  currentDocFlow.PrecedingDocumentItem AS PrecedingDocumentItem,
  currentDocFlow.PrecedingDocumentCategory AS PrecedingDocumentCategory,
  currentDocFlow.SubsequentDocument AS SubsequentDocument,
  currentDocFlow.SubsequentDocumentItem AS SubsequentDocumentItem,
  currentDocFlow.SubsequentDocumentCategory AS SubsequentDocumentCategory,
  currentDocFlow.ProcessFlowLevel AS ProcessFlowLevel
FROM I_SDDocumentMultiLevelProcFlow AS currentDocFlow
;