C_PlndOrdMRPControllerByAORVH

DDL: C_PLNDORDMRPCONTROLLERBYAORVH Type: view_entity CONSUMPTION

MRP Controller by Area of Responsibility

C_PlndOrdMRPControllerByAORVH is a Consumption CDS View that provides data about "MRP Controller by Area of Responsibility" in SAP S/4HANA. It reads from 1 data source (I_SDMAreaOfResponsibility) and exposes 3 fields with key fields Plant, MRPController.

Data Sources (1)

SourceAliasJoin Type
I_SDMAreaOfResponsibility _AOR from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label MRP Controller by Area of Responsibility view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey MRPController view
Search.searchable true view
Consumption.ranked true view
ObjectModel.dataCategory #VALUE_HELP view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Plant I_SDMAreaOfResponsibility Plant Valuation Area
KEY MRPController I_SDMAreaOfResponsibility MRPController MRP Controller
MRPControllerName

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_PlndOrdMRPControllerByAORVH.
-- 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_PlndOrdMRPControllerByAORVH AS
SELECT
  _AOR.Plant AS Plant,
  _AOR.MRPController AS MRPController,
  _AOR._MRPController.MRPControllerName AS MRPControllerName
FROM I_SDMAreaOfResponsibility AS _AOR
;