C_MRPTypeVH
MRP Type Value Help
C_MRPTypeVH is a Consumption CDS View that provides data about "MRP Type Value Help" in SAP S/4HANA. It reads from 1 data source (I_MRPType) and exposes 5 fields with key field MRPType. It has 3 associations to related views. Part of development package ODATA_PP_DD_REPL.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MRPType | I_MRPType | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_MRPTypeText | _MRPText | $projection.MRPType = _MRPText.MRPType and _MRPText.Language = $session.system_language |
| [0..1] | I_MRPProcedure | _MRPProcedure | $projection.MRPProcedure = _MRPProcedure.MRPProcedure |
| [1..1] | I_MRPProcedureText | _MRPProcedureText | $projection.MRPProcedure = _MRPProcedureText.MRPProcedure and _MRPProcedureText.Language = $session.system_language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| EndUserText.label | MRP Type Value Help | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.representativeKey | MRPType | view | |
| Analytics.technicalName | CMRPTYPEVH | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MRPType | I_MRPType | MRPType | |
| MRPTypeName | _MRPText | MRPTypeName | ||
| MRPProcedure | I_MRPType | MRPProcedure | ||
| MRPProcedureName | _MRPProcedureText | MRPProcedureName | ||
| _MRPProcedure | _MRPProcedure |
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@EndUserText.label: 'MRP Type Value Help'
@VDM.viewType: #CONSUMPTION
@ObjectModel.representativeKey: 'MRPType'
@Analytics.technicalName: 'CMRPTYPEVH'
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #C
@Search.searchable: true
@Consumption.ranked: true
define view entity C_MRPTypeVH
as select from I_MRPType
association [1..1] to I_MRPTypeText as _MRPText on $projection.MRPType = _MRPText.MRPType
and _MRPText.Language = $session.system_language
association [0..1] to I_MRPProcedure as _MRPProcedure on $projection.MRPProcedure = _MRPProcedure.MRPProcedure
association [1..1] to I_MRPProcedureText as _MRPProcedureText on $projection.MRPProcedure = _MRPProcedureText.MRPProcedure
and _MRPProcedureText.Language = $session.system_language
{
@ObjectModel.text.element: [ 'MRPTypeName']
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.9 }
key I_MRPType.MRPType,
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.9 }
_MRPText.MRPTypeName,
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.9 }
I_MRPType.MRPProcedure,
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.9 }
_MRPProcedureText.MRPProcedureName,
@UI.hidden: true
@Consumption.filter.hidden: true
_MRPProcedure
}
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