P_PFMViewProdPlntSuplrFprints

DDL: P_PFMVIEWPRODPLNTSUPLRFPRINTS Type: view_entity CONSUMPTION

P_PFMViewProdPlntSuplrFprints is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_PFMProdPlntSuplrFootprint) and exposes 10 fields with key field PFMProdPlntSuplrFootprintUUID.

Data Sources (1)

SourceAliasJoin Type
I_PFMProdPlntSuplrFootprint _PFMProdPlntSuplrFootprint from

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY PFMProdPlntSuplrFootprintUUID PFMProdPlntSuplrFootprintUUID Product / Plant / Supplier Assignment
PFMMasterDataFootprintUUID PFMMasterDataFootprintUUID Master Data Footprint
Product Product Product Sold
Plant Plant Valuation Area
Supplier Supplier Supplier
ValuationArea _Plant ValuationArea Valuation Area
_PFMMasterDataFootprint _PFMMasterDataFootprint
_Product _Product
_Plant _Plant
_Supplier _Supplier

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_PFMViewProdPlntSuplrFprints.
-- 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.

CREATE VIEW P_PFMViewProdPlntSuplrFprints AS
SELECT
  PFMProdPlntSuplrFootprintUUID,
  PFMMasterDataFootprintUUID,
  Product,
  Plant,
  Supplier,
  _Plant.ValuationArea AS ValuationArea
FROM I_PFMProdPlntSuplrFootprint AS _PFMProdPlntSuplrFootprint
;