C_ProductMRPAreaVH

DDL: C_PRODUCTMRPAREAVH SQL: CPRODMRPVH Type: view CONSUMPTION

Product MRP Area Value Help

C_ProductMRPAreaVH is a Consumption CDS View that provides data about "Product MRP Area Value Help" in SAP S/4HANA. It reads from 1 data source (I_MRPArea) and exposes 3 fields with key field MRPArea.

Data Sources (1)

SourceAliasJoin Type
I_MRPArea I_MRPArea from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CPRODMRPVH view
EndUserText.label Product MRP Area Value Help view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey MRPArea view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MRPArea MRPArea MRP Area
MRPAreaText MRPAreaText MRP Area Text
MRPAreaPlant MRPAreaPlant

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_ProductMRPAreaVH.
-- 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: CPRODMRPVH

CREATE VIEW C_ProductMRPAreaVH AS
SELECT
  MRPArea,
  MRPAreaText,
  MRPAreaPlant
FROM I_MRPArea
;