I_RFM_MngPONextDelivDate

DDL: I_RFM_MNGPONEXTDELIVDATE SQL: IRFMMNGNXTDLVDT Type: view COMPOSITE

Next Delivery Date

I_RFM_MngPONextDelivDate is a Composite CDS View that provides data about "Next Delivery Date" in SAP S/4HANA. It reads from 1 data source (I_PurgDocScheduleLineBasic) and exposes 3 fields with key fields PurchasingDocument, PurchasingDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_PurgDocScheduleLineBasic _SchdLine from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IRFMMNGNXTDLVDT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Next Delivery Date view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument PurchasingDocument Purchasing Document
KEY PurchasingDocumentItem PurchasingDocumentItem Purchasing Doc. Item
ScheduleLineDeliveryDate

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_RFM_MngPONextDelivDate.
-- 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: IRFMMNGNXTDLVDT

CREATE VIEW I_RFM_MngPONextDelivDate AS
SELECT
  PurchasingDocument,
  PurchasingDocumentItem,
  min(ScheduleLineDeliveryDate) AS ScheduleLineDeliveryDate
FROM I_PurgDocScheduleLineBasic AS _SchdLine
;