I_ComplaintProcessFlow

DDL: I_COMPLAINTPROCESSFLOW Type: view_entity COMPOSITE Package: VDM_CMH_SD

Complaint Process Flow

I_ComplaintProcessFlow is a Composite CDS View that provides data about "Complaint Process Flow" in SAP S/4HANA. It reads from 1 data source (I_ComplaintProcessFlowBasic) and exposes 13 fields with key field DocRelationshipUUID. Part of development package VDM_CMH_SD.

Data Sources (1)

SourceAliasJoin Type
I_ComplaintProcessFlowBasic Basic from

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 Complaint Process Flow view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY DocRelationshipUUID I_ComplaintProcessFlowBasic DocRelationshipUUID
PrecedingDocument I_ComplaintProcessFlowBasic PrecedingDocument SD Document
PrecedingDocumentItem I_ComplaintProcessFlowBasic PrecedingDocumentItem Item
SubsequentDocument SubsequentDocument
SubsequentDocumentItem SubsequentDocumentItem
PrecedingDocumentCategory PrecedingDocumentCategory
DocumentTypeDescription DocumentTypeDescription
PrecedingDocStatus PrecedingDocStatus
SubsequentDocumentCategory SubsequentDocumentCategory
DocumentDescription DocumentDescription Doc. Name
SubsequentDocStatus SubsequentDocStatus
PrecedingDocStatusDesc PrecedingDocStatusDesc
SubsequentDocStatusDesc SubsequentDocStatusDesc

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_ComplaintProcessFlow.
-- 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_ComplaintProcessFlow AS
SELECT
  Basic.DocRelationshipUUID AS DocRelationshipUUID,
  Basic.PrecedingDocument AS PrecedingDocument,
  Basic.PrecedingDocumentItem AS PrecedingDocumentItem,
  SubsequentDocument,
  SubsequentDocumentItem,
  PrecedingDocumentCategory,
  DocumentTypeDescription,
  PrecedingDocStatus,
  SubsequentDocumentCategory,
  DocumentDescription,
  SubsequentDocStatus,
  PrecedingDocStatusDesc,
  SubsequentDocStatusDesc
FROM I_ComplaintProcessFlowBasic AS Basic
;