N_MRPController
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)
| Source | Alias | Join Type |
|---|---|---|
| t024d | t024d | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Plant | _Plant | $projection.Plant = _Plant.Plant |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Plant | t024d | werks | |
| KEY | MRPController | |||
| MRPControllerName | ||||
| _Plant | _Plant |
@AbapCatalog.sqlViewName: 'NPPMRPCONTROLLER'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #REQUIRED
//@Analytics.dataCategory: #DIMENSION
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'MRPController'
@ObjectModel.semanticKey: ['Plant', 'MRPController']
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #CUSTOMIZING}
@VDM.auxiliaryEntity.for.entity: 'I_MRPController'
@VDM.auxiliaryEntity.usage.type: [#ENTERPRISE_SEARCH]
//@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
//@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'MRP Controller Aux'
/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ] } */
define view N_MRPController
as select from t024d as t024d
association [1..1] to I_Plant as _Plant on $projection.Plant = _Plant.Plant
{
// Key
@ObjectModel.foreignKey.association: '_Plant'
@Search: {defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.8}
key t024d.werks as Plant,
@ObjectModel.text.element: 'MRPControllerName'
@Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
key cast(t024d.dispo as pph_dispo preserving type) as MRPController,
// Attributes
@Semantics.text: true
cast(t024d.dsnam as pph_dsnam preserving type) as MRPControllerName,
// Associations
_Plant
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T024D"
],
"ASSOCIATED":
[
"I_PLANT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA