C_PPS_PurContrProcessFlow

DDL: C_PPS_PURCONTRPROCESSFLOW Type: view_entity CONSUMPTION

Consumption for PPS PC Process Flow

C_PPS_PurContrProcessFlow is a Consumption CDS View that provides data about "Consumption for PPS PC Process Flow" in SAP S/4HANA. It reads from 1 data source (I_PPS_PurContrProcessFlow) and exposes 12 fields with key fields PrecedingDocument, PrecedingDocumentItem, SubsequentDocument, SubsequentDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_PPS_PurContrProcessFlow I_PPS_PurContrProcessFlow from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Consumption for PPS PC Process Flow view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY PrecedingDocument PrecedingDocument SD Document
KEY PrecedingDocumentItem PrecedingDocumentItem Item
KEY SubsequentDocument SubsequentDocument Supplier Quotation
KEY SubsequentDocumentItem SubsequentDocumentItem
PrecedingDocumentCategory PrecedingDocumentCategory
SubsequentDocumentCategory SubsequentDocumentCategory
PurchaseContract PurchaseContract Purchasing Doc.
ActivePurchasingDocument ActivePurchasingDocument Active Purchase Doc
PurchaseContractItem PurchaseContractItem Item
PurchaseContractType PurchaseContractType Order Type
PurchasingOrganization PurchasingOrganization Purchasing Organization
PurchasingGroup PurchasingGroup Purchasing Group

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 C_PPS_PurContrProcessFlow.
-- 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 C_PPS_PurContrProcessFlow AS
SELECT
  PrecedingDocument,
  PrecedingDocumentItem,
  SubsequentDocument,
  SubsequentDocumentItem,
  PrecedingDocumentCategory,
  SubsequentDocumentCategory,
  PurchaseContract,
  ActivePurchasingDocument,
  PurchaseContractItem,
  PurchaseContractType,
  PurchasingOrganization,
  PurchasingGroup
FROM I_PPS_PurContrProcessFlow
;