I_ManufacturingFeature
Manufacturing Feature
I_ManufacturingFeature is a Basic CDS View that provides data about "Manufacturing Feature" in SAP S/4HANA. It reads from 2 data sources (mpe_features, mpe_featuractiv) and exposes 3 fields with key field ManufacturingFeature. It has 1 association to related views. Part of development package MPE_CORE.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| mpe_features | f | from |
| mpe_featuractiv | fa | left_outer |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ManufacturingFeatureText | _Text | $projection.ManufacturingFeature = _Text.ManufacturingFeature |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMPEFEATURE | 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 | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | ManufacturingFeature | view | |
| EndUserText.label | Manufacturing Feature | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ManufacturingFeature | mpe_features | feature | |
| ManufacturingFeatureIsActive | ||||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IMPEFEATURE'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #META}
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'ManufacturingFeature'
@EndUserText.label: 'Manufacturing Feature'
define view I_ManufacturingFeature
as select from mpe_features as f
left outer join mpe_featuractiv as fa on f.feature = fa.feature
association [0..*] to I_ManufacturingFeatureText as _Text on $projection.ManufacturingFeature = _Text.ManufacturingFeature
{
key f.feature as ManufacturingFeature,
max( fa.feature ) as ManufacturingFeatureIsActive,
_Text
} group by f.feature
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