P_InbDelivProcFlowChildren

DDL: P_INBDELIVPROCFLOWCHILDREN SQL: PIBDLVPROCFLOWC Type: view COMPOSITE

Inbound Delivery Process Flow Successors

P_InbDelivProcFlowChildren is a Composite CDS View that provides data about "Inbound Delivery Process Flow Successors" in SAP S/4HANA. It reads from 8 data sources and exposes 49 fields with key fields InboundDelivery, PrecedingDocument, PrecedingDocumentCategory, SubsequentDocument, SubsequentDocumentCategory. It has 1 association to related views.

Data Sources (8)

SourceAliasJoin Type
I_PurchasingDocHistory History inner
I_InboundDelivery InboundDelivery inner
I_InboundDelivery InboundDelivery inner
I_InboundDelivery InboundDelivery inner
I_SupplierInvoice Invoice inner
P_DelivProcFlowLatestTransfOrd LatestWMTransferOrder inner
P_DelivProcFlowLatestTransfOrd WMTransferOrder left_outer
P_DeliveryProcFlowTransfOrd WMTransferOrder inner

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_InboundDelivery _InboundDelivery $projection.InboundDelivery = _InboundDelivery.InboundDelivery

Annotations (11)

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

Fields (49)

KeyFieldSource TableSource FieldDescription
KEY InboundDelivery P_DeliveryProcFlowTransfOrd DeliveryDocument Outbound Delivery
KEY PrecedingDocument P_DeliveryProcFlowTransfOrd PrecedingDocument LE Delivery
KEY PrecedingDocumentCategory P_DeliveryProcFlowTransfOrd PrecedingDocumentCategory Prec.Doc.Categ.
KEY SubsequentDocument P_DeliveryProcFlowTransfOrd SubsequentDocument
KEY SubsequentDocumentCategory
PurchaseOrder
WarehouseNumber P_DeliveryProcFlowTransfOrd WarehouseNumber
WrhsMgmtTransferOrder P_DeliveryProcFlowTransfOrd WrhsMgmtTransferOrder
MaterialDocument
MaterialDocumentYear Material Document Year
SupplierInvoice SD Document
FiscalYear G/L Fiscal Year
OutboundDelivery
KEY PrecedingDocument I_InboundDelivery InboundDelivery LE Delivery
KEY PrecedingDocumentCategory I_InboundDelivery SDDocumentCategory Prec.Doc.Categ.
KEY SubsequentDocument GoodsReceipt SubsequentDocument
PurchaseOrder
WarehouseNumber
WrhsMgmtTransferOrder
MaterialDocument GoodsReceipt SubsequentDocument
MaterialDocumentYear GoodsReceipt MaterialDocumentYear Material Document Year
SupplierInvoice SD Document
FiscalYear G/L Fiscal Year
OutboundDelivery
KEY PrecedingDocument LE Delivery
KEY PrecedingDocumentCategory Prec.Doc.Categ.
KEY SubsequentDocument GoodsReceipt SubsequentDocument
PurchaseOrder
WarehouseNumber
WrhsMgmtTransferOrder
MaterialDocument GoodsReceipt SubsequentDocument
MaterialDocumentYear GoodsReceipt MaterialDocumentYear Material Document Year
SupplierInvoice SD Document
FiscalYear G/L Fiscal Year
OutboundDelivery
InboundDelivery Outbound Delivery
KEY PrecedingDocument LE Delivery
KEY PrecedingDocumentCategory InboundDeliveryItem ReferenceSDDocumentCategory Prec.Doc.Categ.
KEY SubsequentDocument
KEY SubsequentDocumentCategory
PurchaseOrder
WarehouseNumber
WrhsMgmtTransferOrder
MaterialDocument
MaterialDocumentYear Material Document Year
SupplierInvoice I_SupplierInvoice SupplierInvoice SD Document
FiscalYear I_SupplierInvoice FiscalYear G/L Fiscal Year
OutboundDelivery
_InboundDelivery _InboundDelivery

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 P_InbDelivProcFlowChildren.
-- 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: PIBDLVPROCFLOWC

CREATE VIEW P_InbDelivProcFlowChildren AS
SELECT
  WMTransferOrder.DeliveryDocument AS InboundDelivery,
  WMTransferOrder.PrecedingDocument AS PrecedingDocument,
  WMTransferOrder.PrecedingDocumentCategory AS PrecedingDocumentCategory,
  WMTransferOrder.SubsequentDocument AS SubsequentDocument,
  cast('Q2' as subsequ_doc_cat) AS SubsequentDocumentCategory,
  cast( '' as vdm_purchaseorder) AS PurchaseOrder,
  WMTransferOrder.WarehouseNumber AS WarehouseNumber,
  WMTransferOrder.WrhsMgmtTransferOrder AS WrhsMgmtTransferOrder,
  cast('' as mblnr ) AS MaterialDocument,
  cast('0000' as mjahr) AS MaterialDocumentYear,
  cast('' as re_belnr) AS SupplierInvoice,
  cast('0000' as gjahr) AS FiscalYear,
  cast ('' as vbeln_vl ) AS OutboundDelivery
INNER JOIN I_InboundDelivery AS InboundDelivery ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN P_DelivProcFlowLatestTransfOrd AS WMTransferOrder ON /* join condition not captured in parsed metadata */
INNER JOIN P_DelivProcFlowLatestTransfOrd AS LatestWMTransferOrder ON /* join condition not captured in parsed metadata */
INNER JOIN P_DeliveryProcFlowTransfOrd AS WMTransferOrder ON /* join condition not captured in parsed metadata */
INNER JOIN I_PurchasingDocHistory AS History ON /* join condition not captured in parsed metadata */
INNER JOIN I_SupplierInvoice AS Invoice ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_InboundDelivery AS _InboundDelivery ON InboundDelivery = _InboundDelivery.InboundDelivery  -- association [0..1]
;