C_ProductObjPgSite

DDL: C_PRODUCTOBJPGSITE SQL: CPRODOBJPGSITE Type: view CONSUMPTION

Product Object Page - Site

C_ProductObjPgSite is a Consumption CDS View that provides data about "Product Object Page - Site" in SAP S/4HANA. It reads from 1 data source (I_ProductPlant) and exposes 18 fields with key fields Product, Site. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProductPlant I_ProductPlant from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_ProductObjPg _ProductObjPg $projection.Product = _ProductObjPg.Product

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CPRODOBJPGSITE view
EndUserText.label Product Object Page - Site view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
Consumption.semanticObject Site view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product Sold
KEY Site Plant Valuation Area
SiteName _Site SiteName
ReferenceSite
ReferenceSiteName
MRPType MRPType MRP Type
PlannedDeliveryDurationInDays PlannedDeliveryDurationInDays Planned Delivery Time
SourceOfSupplyCategory SourceOfSupplyCategory Source of Supply
SafetyStockQuantity SafetyStockQuantity Safety stock
PlannedDeliveryDurationUnit
BaseUnit _Product BaseUnit Unit of Measure
SiteCategory _Site SiteCategory
_ProductObjPg _ProductObjPg
_Site _Site
_ReferenceSite
_MRPType _MRPType
_SourceOfSupplyCategory _SourceOfSupplyCategory
_BaseUnitOfMeasure _Product _BaseUnitOfMeasure

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_ProductObjPgSite.
-- 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: CPRODOBJPGSITE

CREATE VIEW C_ProductObjPgSite AS
SELECT
  Product,
  Plant AS Site,
  _Site.SiteName AS SiteName,
  _Site._SiteReferenceSite.ReferenceSite AS ReferenceSite,
  _Site._SiteReferenceSite._ReferenceSite.SiteName AS ReferenceSiteName,
  MRPType,
  PlannedDeliveryDurationInDays,
  SourceOfSupplyCategory,
  SafetyStockQuantity,
  cast( '' as msehi ) AS PlannedDeliveryDurationUnit,
  _Product.BaseUnit AS BaseUnit,
  _Site.SiteCategory AS SiteCategory,
  _Site._SiteReferenceSite._ReferenceSite AS _ReferenceSite,
  _Product._BaseUnitOfMeasure AS _BaseUnitOfMeasure
FROM I_ProductPlant
LEFT OUTER JOIN C_ProductObjPg AS _ProductObjPg ON Product = _ProductObjPg.Product  -- association [1..1]
;