P_PurOrdAndSchedgAgrmtRqmt

DDL: P_PURORDANDSCHEDGAGRMTRQMT SQL: PPURORDANDSA Type: view CONSUMPTION

Purchase Order And Scheduling Agreement Requirement

P_PurOrdAndSchedgAgrmtRqmt is a Consumption CDS View that provides data about "Purchase Order And Scheduling Agreement Requirement" in SAP S/4HANA.

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PPURORDANDSA view
VDM.private true view
VDM.viewType #CONSUMPTION view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Purchase Order And Scheduling Agreement Requirement view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
KEY Supplier Supplier Supplier
PORequiredQuantity _SubcontrgPurOrdRqmts RequiredQuantity Requirement qty
SARequiredQuantity _SubcontrgSchedgAgrmtRqmts RequiredQuantity Requirement qty
ReservationIsFinallyIssued ReservationIsFinallyIssued Res Final Issue

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_PurOrdAndSchedgAgrmtRqmt.
-- 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: PPURORDANDSA

CREATE VIEW P_PurOrdAndSchedgAgrmtRqmt AS
SELECT
  Material,
  Plant,
  Supplier,
  _SubcontrgPurOrdRqmts.RequiredQuantity AS PORequiredQuantity,
  _SubcontrgSchedgAgrmtRqmts.RequiredQuantity AS SARequiredQuantity,
  ReservationIsFinallyIssued
;