C_OutbDelivProcFlow

DDL: C_OUTBDELIVPROCFLOW SQL: COBDLVPROCFLOW Type: view CONSUMPTION

Outbound Delivery Process Flow

C_OutbDelivProcFlow is a Consumption CDS View that provides data about "Outbound Delivery Process Flow" in SAP S/4HANA. It reads from 1 data source (I_DeliveryDocument) and exposes 31 fields with key fields OutboundDelivery, PrecedingDocument, PrecedingDocumentCategory, SubsequentDocument, SubsequentDocumentCategory.

Data Sources (1)

SourceAliasJoin Type
I_DeliveryDocument Delivery inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName COBDLVPROCFLOW view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Outbound 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 (31)

KeyFieldSource TableSource FieldDescription
KEY OutboundDelivery I_DeliveryDocument DeliveryDocument Outbound Delivery
KEY PrecedingDocument SD Document
KEY PrecedingDocumentCategory
KEY SubsequentDocument
KEY SubsequentDocumentCategory
ShippingPoint I_DeliveryDocument ShippingPoint Shipping Point
SDDocumentCategory I_DeliveryDocument SDDocumentCategory Document Cat.
SalesDocument SD Document
PurchaseOrder Purchasing Document
WarehouseNumber
WrhsMgmtTransferOrder
MaterialDocument Material Doc.
MaterialDocumentYear Material Document Year
BillingDocument SD Document
FreightOrder Freight Order
DeliveryDocumentasOutboundDelivery
KEY PrecedingDocument PrecedingDocument SD Document
KEY PrecedingDocumentCategory PrecedingDocumentCategory
KEY SubsequentDocument SubsequentDocument
KEY SubsequentDocumentCategory SubsequentDocumentCategory
ShippingPoint I_DeliveryDocument ShippingPoint Shipping Point
SDDocumentCategory OutbDelivProcFlowNoAnchr SDDocumentCategory Document Cat.
SalesDocument SalesDocument SD Document
PurchaseOrder PurchaseOrder Purchasing Document
WarehouseNumber WarehouseNumber
WrhsMgmtTransferOrder WrhsMgmtTransferOrder
MaterialDocument MaterialDocument Material Doc.
MaterialDocumentYear MaterialDocumentYear Material Document Year
BillingDocument BillingDocument SD Document
FreightOrder FreightOrder Freight Order
InboundDelivery InboundDelivery LE Delivery

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_OutbDelivProcFlow.
-- 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: COBDLVPROCFLOW

CREATE VIEW C_OutbDelivProcFlow AS
SELECT
  Delivery.DeliveryDocument AS OutboundDelivery,
  cast(Delivery.DeliveryDocument as preced_doc) AS PrecedingDocument,
  cast(Delivery.SDDocumentCategory as preced_doc_cat) AS PrecedingDocumentCategory,
  cast(' ' as subsequ_doc) AS SubsequentDocument,
  cast(' ' as subsequ_doc_cat) AS SubsequentDocumentCategory,
  Delivery.ShippingPoint AS ShippingPoint,
  Delivery.SDDocumentCategory AS SDDocumentCategory,
  cast('' as vbeln_va) AS SalesDocument,
  cast('' as ebeln) AS PurchaseOrder,
  cast('' as lgnum) AS WarehouseNumber,
  cast('0000000000' as wm_transfer_order) AS WrhsMgmtTransferOrder,
  cast('' as mblnr ) AS MaterialDocument,
  cast('0000' as mjahr) AS MaterialDocumentYear,
  cast('' as vbeln) AS BillingDocument,
  cast('' as /scmtms/tor_id) AS FreightOrder,
  cast('' as vbeln_vl) as InboundDelivery AS DeliveryDocumentasOutboundDelivery,
  InboundDelivery
INNER JOIN I_DeliveryDocument AS Delivery ON /* join condition not captured in parsed metadata */
;