C_MRPController
MRP Controller
C_MRPController is a Consumption CDS View that provides data about "MRP Controller" in SAP S/4HANA. It reads from 1 data source (I_MRPController) and exposes 13 fields with key fields Plant, MRPController. Part of development package ODATA_PP_MRP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MRPController | I_MRPController | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | MRP Controller | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view |
Fields (13)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Plant | I_MRPController | Plant | |
| KEY | MRPController | I_MRPController | MRPController | |
| MRPControllerName | I_MRPController | MRPControllerName | ||
| PlantName | ||||
| MRPControllerPhoneNumber | I_MRPController | MRPControllerPhoneNumber | ||
| PurchasingGroup | I_MRPController | PurchasingGroup | ||
| BusinessArea | I_MRPController | BusinessArea | ||
| ProfitCenter | I_MRPController | ProfitCenter | ||
| UserID | I_MRPController | UserID | ||
| _BusinessArea | I_MRPController | _BusinessArea | ||
| _Plant | I_MRPController | _Plant | ||
| _PurchasingGroup | I_MRPController | _PurchasingGroup | ||
| _User | I_MRPController | _User |
@AccessControl: {
authorizationCheck: #CHECK
}
@EndUserText.label: 'MRP Controller'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@Search.searchable: true
@VDM.viewType: #CONSUMPTION
define view entity C_MRPController
as select from I_MRPController
{
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@UI.selectionField: [ { position: 10 } ]
@UI.lineItem: [ { position: 10 } ]
key I_MRPController.Plant,
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@UI.selectionField: [ { position: 20 } ]
@UI.lineItem: [ { position: 20 } ]
key I_MRPController.MRPController,
I_MRPController.MRPControllerName,
I_MRPController._Plant.PlantName,
I_MRPController.MRPControllerPhoneNumber,
I_MRPController.PurchasingGroup,
@Consumption.valueHelpDefinition: [ { entity: { name: 'I_BusinessAreaStdVH', element: 'BusinessArea' } } ]
I_MRPController.BusinessArea,
I_MRPController.ProfitCenter,
I_MRPController.UserID,
/* Associations */
I_MRPController._BusinessArea,
I_MRPController._Plant,
I_MRPController._PurchasingGroup,
I_MRPController._User
}
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