P_PPMQualityNotification

DDL: P_PPMQUALITYNOTIFICATION SQL: PPPMQUALNOTIF Type: view CONSUMPTION Package: ODATA_MM_ANALYTICS

Parts Per Million Quality Notif.

P_PPMQualityNotification is a Consumption CDS View that provides data about "Parts Per Million Quality Notif." in SAP S/4HANA. It reads from 2 data sources (P_PPMGoodMaterialDocumnet, I_QltyNotification) and exposes 15 fields with key fields MaterialDocument, MaterialDocumentItem, MaterialDocumentYear. Part of development package ODATA_MM_ANALYTICS.

Data Sources (2)

SourceAliasJoin Type
P_PPMGoodMaterialDocumnet P_PPMGoodMaterialDocumnet from
I_QltyNotification QualityNotification inner

Parameters (2)

NameTypeDefault
P_StartDate bedat
P_EndDate bedat

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PPPMQUALNOTIF view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
VDM.private true view
VDM.viewType #CONSUMPTION view
EndUserText.label Parts Per Million Quality Notif. view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY MaterialDocument MaterialDocument MaterialDocument Material Doc.
KEY MaterialDocumentItem MaterialDocument MaterialDocumentItem Material Document Item
KEY MaterialDocumentYear MaterialDocument MaterialDocumentYear Material Document Year
Supplier MaterialDocument Supplier Supplier
PurchasingGroup MaterialDocument PurchasingGroup Purchasing Group
PurchasingOrganization MaterialDocument PurchasingOrganization Purchasing Organization
Material MaterialDocument Material Vehicle Model
MaterialGroup MaterialDocument MaterialGroup Product Group
Plant MaterialDocument Plant Valuation Area
PurchaseOrder PurchaseOrder Purchasing Document
PurchaseOrderItem PurchaseOrderItem Purchasing Document Item
GoodsReceiptQtyInOrderUnit MaterialDocument GoodsReceiptQtyInOrderUnit
OrderQuantityUnit OrderQuantityUnit Sales Unit
GoodsMovementType MaterialDocument GoodsMovementType Movement Type
PostingDate PostingDate Posting Date for GR

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_PPMQualityNotification.
-- 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: PPPMQUALNOTIF
-- Parameters: P_StartDate : bedat, P_EndDate : bedat

CREATE VIEW P_PPMQualityNotification AS
SELECT
  MaterialDocument.MaterialDocument AS MaterialDocument,
  MaterialDocument.MaterialDocumentItem AS MaterialDocumentItem,
  MaterialDocument.MaterialDocumentYear AS MaterialDocumentYear,
  MaterialDocument.Supplier AS Supplier,
  MaterialDocument.PurchasingGroup AS PurchasingGroup,
  MaterialDocument.PurchasingOrganization AS PurchasingOrganization,
  MaterialDocument.Material AS Material,
  MaterialDocument.MaterialGroup AS MaterialGroup,
  MaterialDocument.Plant AS Plant,
  PurchaseOrder,
  PurchaseOrderItem,
  MaterialDocument.GoodsReceiptQtyInOrderUnit AS GoodsReceiptQtyInOrderUnit,
  OrderQuantityUnit,
  MaterialDocument.GoodsMovementType AS GoodsMovementType,
  PostingDate
FROM P_PPMGoodMaterialDocumnet
INNER JOIN I_QltyNotification AS QualityNotification ON /* join condition not captured in parsed metadata */
;