I_FldLogsOutbDelivByPO

DDL: I_FLDLOGSOUTBDELIVBYPO SQL: IFLOBDBYPO Type: view COMPOSITE Package: ODATA_FLOG_PROCESS_RECEIPTS

Outbound Delivery Info based on PO

I_FldLogsOutbDelivByPO is a Composite CDS View that provides data about "Outbound Delivery Info based on PO" in SAP S/4HANA. It reads from 1 data source (I_FldLogsOutbDelivInfo) and exposes 10 fields with key fields PurchasingDocument, PurchasingDocumentItem, MaterialDocument, MaterialDocumentItem, MaterialDocumentYear. Part of development package ODATA_FLOG_PROCESS_RECEIPTS.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsOutbDelivInfo _DelivInfo from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IFLOBDBYPO view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
EndUserText.label Outbound Delivery Info based on PO view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument PurchasingDocument Purchasing Document
KEY PurchasingDocumentItem PurchasingDocumentItem Purchasing Doc. Item
KEY MaterialDocument I_FldLogsOutbDelivInfo MaterialDocument Material Doc.
KEY MaterialDocumentItem I_FldLogsOutbDelivInfo MaterialDocumentItem Material Document Item
KEY MaterialDocumentYear I_FldLogsOutbDelivInfo MaterialDocumentYear Material Document Year
KEY DeliveryDocument I_FldLogsOutbDelivInfo DeliveryDocument Outbound Delivery
KEY DeliveryDocumentItem I_FldLogsOutbDelivInfo DeliveryDocumentItem Outb. Delivery Item
KEY OutboundDelivery OutboundDelivery LE Delivery
OutboundDeliveryItem OutboundDeliveryItem Logistics Execution Delivery Item
IsEndOfPurposeBlocked IsEndOfPurposeBlocked Busin. Purp. Cmpltd.

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_FldLogsOutbDelivByPO.
-- 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: IFLOBDBYPO

CREATE VIEW I_FldLogsOutbDelivByPO AS
SELECT
  PurchasingDocument,
  PurchasingDocumentItem,
  _DelivInfo.MaterialDocument AS MaterialDocument,
  _DelivInfo.MaterialDocumentItem AS MaterialDocumentItem,
  _DelivInfo.MaterialDocumentYear AS MaterialDocumentYear,
  _DelivInfo.DeliveryDocument AS DeliveryDocument,
  _DelivInfo.DeliveryDocumentItem AS DeliveryDocumentItem,
  OutboundDelivery,
  OutboundDeliveryItem,
  IsEndOfPurposeBlocked
FROM I_FldLogsOutbDelivInfo AS _DelivInfo
;