N_MRPController

DDL: N_MRPCONTROLLER SQL: NPPMRPCONTROLLER Type: view

MRP Controller Aux

N_MRPController is a CDS View that provides data about "MRP Controller Aux" in SAP S/4HANA. It reads from 1 data source (t024d) and exposes 4 fields with key fields Plant, MRPController. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t024d t024d from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName NPPMRPCONTROLLER view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey MRPController view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.auxiliaryEntity.for.entity I_MRPController view
Search.searchable true view
EndUserText.label MRP Controller Aux view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Plant t024d werks Receiving Plant
KEY MRPController
MRPControllerName
_Plant _Plant

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 N_MRPController.
-- 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: NPPMRPCONTROLLER

CREATE VIEW N_MRPController AS
SELECT
  t024d.werks AS Plant,
  cast(t024d.dispo as pph_dispo preserving type) AS MRPController,
  cast(t024d.dsnam as pph_dsnam preserving type) AS MRPControllerName
FROM t024d
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [1..1]
;