C_MRPAreaValHelp

DDL: C_MRPAREAVALHELP SQL: CMRPAREAVALHELP Type: view CONSUMPTION

MRP Area Value Help

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

Data Sources (1)

SourceAliasJoin Type
I_SDMAreaOfResponsibility _AreaOfResponsibility inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CMRPAREAVALHELP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label MRP Area Value Help view
Search.searchable true view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MRPArea _MRPArea MRPArea MRP Area
MRPAreaText _MRPArea MRPAreaText
Plant _MRPArea MRPAreaPlant
MRPAreaCategory _MRPArea MRPAreaCategory

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_MRPAreaValHelp.
-- 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: CMRPAREAVALHELP

CREATE VIEW C_MRPAreaValHelp AS
SELECT
  _MRPArea.MRPArea AS MRPArea,
  _MRPArea.MRPAreaText AS MRPAreaText,
  _MRPArea.MRPAreaPlant AS Plant,
  _MRPArea.MRPAreaCategory AS MRPAreaCategory
INNER JOIN I_SDMAreaOfResponsibility AS _AreaOfResponsibility ON /* join condition not captured in parsed metadata */
;