C_InbDelivProcFlow

DDL: C_INBDELIVPROCFLOW SQL: CIBDLVPROCFLOW Type: view CONSUMPTION

Inbound Delivery Process Flow

C_InbDelivProcFlow is a Consumption CDS View that provides data about "Inbound Delivery Process Flow" in SAP S/4HANA. It reads from 1 data source (I_InboundDelivery) and exposes 16 fields with key fields InboundDelivery, PrecedingDocument, PrecedingDocumentCategory, SubsequentDocument, SubsequentDocumentCategory.

Data Sources (1)

SourceAliasJoin Type
I_InboundDelivery Delivery inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CIBDLVPROCFLOW view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Inbound Delivery Process Flow view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.compositionRoot true view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY InboundDelivery I_InboundDelivery InboundDelivery LE Delivery
KEY PrecedingDocument Flow PrecedingDocument SD Document
KEY PrecedingDocumentCategory Flow PrecedingDocumentCategory
KEY SubsequentDocument
KEY SubsequentDocumentCategory Flow SubsequentDocumentCategory
ShippingPoint I_InboundDelivery ShippingPoint Shipping Point
Plant Flow Plant Valuation Area
CompGrpMatl Flow CompGrpMatl Comp. Group Matl.
PurchaseOrder Flow PurchaseOrder Purchasing Document
WarehouseNumber Flow WarehouseNumber
WrhsMgmtTransferOrder Flow WrhsMgmtTransferOrder
MaterialDocument Flow MaterialDocument Material Doc.
MaterialDocumentYear Flow MaterialDocumentYear Material Document Year
SupplierInvoice Flow SupplierInvoice
FiscalYear Flow FiscalYear G/L Fiscal Year
BillingDocument Flow BillingDocument SD Document

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_InbDelivProcFlow.
-- 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.
-- SQL view name: CIBDLVPROCFLOW

CREATE VIEW C_InbDelivProcFlow AS
SELECT
  Delivery.InboundDelivery AS InboundDelivery,
  Flow.PrecedingDocument AS PrecedingDocument,
  Flow.PrecedingDocumentCategory AS PrecedingDocumentCategory,
  cast(Flow.SubsequentDocument as subsequ_doc) AS SubsequentDocument,
  Flow.SubsequentDocumentCategory AS SubsequentDocumentCategory,
  Delivery.ShippingPoint AS ShippingPoint,
  Flow.Plant AS Plant,
  Flow.CompGrpMatl AS CompGrpMatl,
  Flow.PurchaseOrder AS PurchaseOrder,
  Flow.WarehouseNumber AS WarehouseNumber,
  Flow.WrhsMgmtTransferOrder AS WrhsMgmtTransferOrder,
  Flow.MaterialDocument AS MaterialDocument,
  Flow.MaterialDocumentYear AS MaterialDocumentYear,
  Flow.SupplierInvoice AS SupplierInvoice,
  Flow.FiscalYear AS FiscalYear,
  Flow.BillingDocument AS BillingDocument
INNER JOIN I_InboundDelivery AS Delivery ON /* join condition not captured in parsed metadata */
;