I_ManufacturingFeatureText
Manufacturing Feature Text
I_ManufacturingFeatureText is a Basic CDS View that provides data about "Manufacturing Feature Text" in SAP S/4HANA. It reads from 1 data source (mpe_featuret) and exposes 4 fields with key fields ManufacturingFeature, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| mpe_featuret | mpe_featuret | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMPEFEATURET | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.representativeKey | ManufacturingFeature | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Manufacturing Feature Text | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ManufacturingFeature | feature | ||
| KEY | Language | langu | ||
| ManufacturingFeatureName | description | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IMPEFEATURET'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #META}
@ObjectModel.representativeKey: 'ManufacturingFeature'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@EndUserText.label: 'Manufacturing Feature Text'
define view I_ManufacturingFeatureText
as select from mpe_featuret
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.text.element: 'ManufacturingFeatureName'
key feature as ManufacturingFeature,
@Semantics.language: true
key langu as Language,
description as ManufacturingFeatureName,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MPE_FEATURET"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"VERSION":0
}
}*/
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