I_MANUFACTURINGFEATURE
Manufacturing Feature
I_MANUFACTURINGFEATURE is a CDS View in S/4HANA. Manufacturing Feature. It contains 1 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_ManufacturingFeatureStatus | view | cross | BASIC | Manufacturing Feature Status |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | ManufacturingFeature | ManufacturingFeature | 1 |
@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
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MPE_FEATURACTIV",
"MPE_FEATURES"
],
"ASSOCIATED":
[
"I_MANUFACTURINGFEATURETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/