I_ManufacturingFeature

DDL: I_MANUFACTURINGFEATURE SQL: IMPEFEATURE Type: view BASIC

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.

Data Sources (2)

SourceAliasJoin Type
mpe_features f from
mpe_featuractiv fa left_outer

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ManufacturingFeatureText _Text $projection.ManufacturingFeature = _Text.ManufacturingFeature

Annotations (9)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MPE_FEATURACTIV",
"MPE_FEATURES"
],
"ASSOCIATED":
[
"I_MANUFACTURINGFEATURETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/