P_POItemOpenSchedLineCalc1

DDL: P_POITEMOPENSCHEDLINECALC1 SQL: PPOIOPSCHLNCALC1 Type: view CONSUMPTION

PO Item Next Open Schedule Line Calc1

P_POItemOpenSchedLineCalc1 is a Consumption CDS View that provides data about "PO Item Next Open Schedule Line Calc1" in SAP S/4HANA. It reads from 1 data source (I_PurchaseOrderScheduleLine) and exposes 3 fields with key fields PurchaseOrder, PurchaseOrderItem.

Data Sources (1)

SourceAliasJoin Type
I_PurchaseOrderScheduleLine I_PurchaseOrderScheduleLine from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PPOIOPSCHLNCALC1 view
VDM.private true view
VDM.viewType #CONSUMPTION view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label PO Item Next Open Schedule Line Calc1 view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrder PurchaseOrder Purchasing Document
KEY PurchaseOrderItem PurchaseOrderItem Purchasing Document 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 P_POItemOpenSchedLineCalc1.
-- 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: PPOIOPSCHLNCALC1

CREATE VIEW P_POItemOpenSchedLineCalc1 AS
SELECT
  PurchaseOrder,
  PurchaseOrderItem,
  min (ScheduleLineDeliveryDate ) AS ScheduleLineDeliveryDate
FROM I_PurchaseOrderScheduleLine
;