C_MRPGroupValHelp

DDL: C_MRPGROUPVALHELP SQL: CMRPGRPVALHELP Type: view CONSUMPTION

MRP Group Value Help

C_MRPGroupValHelp is a Consumption CDS View that provides data about "MRP Group Value Help" in SAP S/4HANA. It reads from 1 data source (I_SDMAreaOfResponsibility) and exposes 3 fields with key fields MRPGroup, MRPPlant. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SDMAreaOfResponsibility _AreaOfResponsibility inner

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_MRPGroupText _MRPGroupText $projection.MRPGroup = _MRPGroupText.MRPGroup and $projection.MRPPlant = _MRPGroupText.MRPPlant and _MRPGroupText.Language = $session.system_language

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CMRPGRPVALHELP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label MRP Group Value Help view
Search.searchable true view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MRPGroup _MRPGroup MRPGroup MRP Group
KEY MRPPlant _MRPGroup MRPPlant Plant
MRPGroupName _MRPGroupText MRPGroupName

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_MRPGroupValHelp.
-- 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: CMRPGRPVALHELP

CREATE VIEW C_MRPGroupValHelp AS
SELECT
  _MRPGroup.MRPGroup AS MRPGroup,
  _MRPGroup.MRPPlant AS MRPPlant,
  _MRPGroupText.MRPGroupName AS MRPGroupName
INNER JOIN I_SDMAreaOfResponsibility AS _AreaOfResponsibility ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_MRPGroupText AS _MRPGroupText ON MRPGroup = _MRPGroupText.MRPGroup AND MRPPlant = _MRPGroupText.MRPPlant AND _MRPGroupText.Language = $session.system_language  -- association [1..1]
;