P_RU_MaterialRcptDateMMMvtMatD

DDL: P_RU_MATERIALRCPTDATEMMMVTMATD SQL: PRUMATRCDTMMMVMD Type: view CONSUMPTION

P_RU_MaterialRcptDateMMMvtMatD is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_MaterialDocumentRecord) and exposes 8 fields.

Data Sources (1)

SourceAliasJoin Type
I_MaterialDocumentRecord MatDocItem from

Annotations (6)

NameValueLevelField
VDM.private true view
VDM.viewType #CONSUMPTION view
AbapCatalog.sqlViewName PRUMATRCDTMMMVMD view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (8)

KeyFieldSource TableSource FieldDescription
CompanyCode I_MaterialDocumentRecord CompanyCode Receiver Company Code
MaterialDocument I_MaterialDocumentRecord MaterialDocument Material Doc.
MaterialDocumentYear I_MaterialDocumentRecord MaterialDocumentYear Material Document Year
MaterialDocumentItem I_MaterialDocumentRecord MaterialDocumentItem Material Document Item
DocumentDate I_MaterialDocumentRecord DocumentDate Journal Entry Date
PostingDate I_MaterialDocumentRecord PostingDate Posting Date for GR
PurchaseOrder I_MaterialDocumentRecord PurchaseOrder Purchasing Document
PurchaseOrderItem I_MaterialDocumentRecord PurchaseOrderItem Purchasing Document Item

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_RU_MaterialRcptDateMMMvtMatD.
-- 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: PRUMATRCDTMMMVMD

CREATE VIEW P_RU_MaterialRcptDateMMMvtMatD AS
SELECT
  MatDocItem.CompanyCode AS CompanyCode,
  MatDocItem.MaterialDocument AS MaterialDocument,
  MatDocItem.MaterialDocumentYear AS MaterialDocumentYear,
  MatDocItem.MaterialDocumentItem AS MaterialDocumentItem,
  MatDocItem.DocumentDate AS DocumentDate,
  MatDocItem.PostingDate AS PostingDate,
  MatDocItem.PurchaseOrder AS PurchaseOrder,
  MatDocItem.PurchaseOrderItem AS PurchaseOrderItem
FROM I_MaterialDocumentRecord AS MatDocItem
;