C_PFMProductVH

DDL: C_PFMPRODUCTVH Type: view_entity CONSUMPTION

Products with footprints

C_PFMProductVH is a Consumption CDS View that provides data about "Products with footprints" in SAP S/4HANA. It reads from 1 data source (I_PFMProdPlntFootprint) and exposes 21 fields with key field Product.

Data Sources (1)

SourceAliasJoin Type
I_PFMProdPlntFootprint _PFMProdPlntFootprint inner

Annotations (11)

NameValueLevelField
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Search.searchable true view
Consumption.ranked true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Product view
EndUserText.label Products with footprints view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY Product _ProductVH Product Product Sold
_Text _ProductVH _Text
ProductExternalID _ProductVH ProductExternalID Material
IndustrySector _ProductVH IndustrySector Industry
ProductType _ProductVH ProductType Product Type Group
_ProductType _ProductVH _ProductType
ProductGroup _ProductVH ProductGroup Product Sold Group
_ProductGroup _ProductVH _ProductGroup
BaseUnit _ProductVH BaseUnit Unit of Measure
_BaseUnit _ProductVH _BaseUnit
GrossWeight _ProductVH GrossWeight Total Weight
NetWeight _ProductVH NetWeight Net weight
WeightUnit _ProductVH WeightUnit Weight unit
_WeightUnit _ProductVH _WeightUnit
ManufacturerNumber _ProductVH ManufacturerNumber Manufacturer No
AuthorizationGroup _ProductVH AuthorizationGroup AuthorizGroup
IsBatchManagementRequired _ProductVH IsBatchManagementRequired Batch Mgmt Rqt(Plnt)
ProductManufacturerNumber _ProductVH ProductManufacturerNumber Mfr Part Number
ArticleCategory _ProductVH ArticleCategory Prod Category
_ProductCategory _ProductVH _ProductCategory
_ProductPlant _ProductVH _ProductPlant

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 C_PFMProductVH.
-- 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 C_PFMProductVH AS
SELECT
  _ProductVH.Product AS Product,
  _ProductVH._Text AS _Text,
  _ProductVH.ProductExternalID AS ProductExternalID,
  _ProductVH.IndustrySector AS IndustrySector,
  _ProductVH.ProductType AS ProductType,
  _ProductVH._ProductType AS _ProductType,
  _ProductVH.ProductGroup AS ProductGroup,
  _ProductVH._ProductGroup AS _ProductGroup,
  _ProductVH.BaseUnit AS BaseUnit,
  _ProductVH._BaseUnit AS _BaseUnit,
  _ProductVH.GrossWeight AS GrossWeight,
  _ProductVH.NetWeight AS NetWeight,
  _ProductVH.WeightUnit AS WeightUnit,
  _ProductVH._WeightUnit AS _WeightUnit,
  _ProductVH.ManufacturerNumber AS ManufacturerNumber,
  _ProductVH.AuthorizationGroup AS AuthorizationGroup,
  _ProductVH.IsBatchManagementRequired AS IsBatchManagementRequired,
  _ProductVH.ProductManufacturerNumber AS ProductManufacturerNumber,
  _ProductVH.ArticleCategory AS ArticleCategory,
  _ProductVH._ProductCategory AS _ProductCategory,
  _ProductVH._ProductPlant AS _ProductPlant
INNER JOIN I_PFMProdPlntFootprint AS _PFMProdPlntFootprint ON /* join condition not captured in parsed metadata */
;