I_InventoryMRPControllerVH
Inventory MRP Controller
I_InventoryMRPControllerVH is a Basic CDS View that provides data about "Inventory MRP Controller" in SAP S/4HANA. It reads from 1 data source (I_MRPController) and exposes 6 fields with key fields Plant, MRPController. Part of development package MM_IM_VDM_VALUE_HELP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MRPController | MRPController | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| EndUserText.label | Inventory MRP Controller | view | |
| ObjectModel.representativeKey | MRPController | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| VDM.private | false | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Plant | I_MRPController | Plant | |
| KEY | MRPController | I_MRPController | MRPController | |
| MRPControllerName | I_MRPController | MRPControllerName | ||
| MRPControllerPhoneNumber | I_MRPController | MRPControllerPhoneNumber | ||
| UserID | I_MRPController | UserID | ||
| _Plant | _Plant |
@AccessControl:{
authorizationCheck: #CHECK,
personalData:{
blocking:#NOT_REQUIRED
}
}
@EndUserText.label: 'Inventory MRP Controller'
@ObjectModel: {
representativeKey: 'MRPController',
usageType: {
sizeCategory: #S,
serviceQuality: #A,
dataClass:#MASTER
},
dataCategory: #VALUE_HELP
}
@VDM:{
private:false,
viewType: #BASIC,
lifecycle.contract.type: #SAP_INTERNAL_API
}
@Search.searchable: true
@Consumption.ranked: true
define view entity I_InventoryMRPControllerVH
as select from I_MRPController as MRPController
{
@ObjectModel.foreignKey.association: '_Plant'
@Search: {defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW}
key MRPController.Plant,
@ObjectModel.text.element: [ 'MRPControllerName']
@Search: {defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH}
key MRPController.MRPController,
@Semantics.text: true
MRPController.MRPControllerName,
MRPController.MRPControllerPhoneNumber,
MRPController.UserID,
_Plant
}
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