I_MaterialGroup

DDL: I_MATERIALGROUP Type: view BASIC

Material Group

I_MaterialGroup is a Basic CDS View (Dimension) that provides data about "Material Group" in SAP S/4HANA. It reads from 1 data source (t023) and exposes 3 fields with key field MaterialGroup. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t023 t023 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaterialGroupText _Text $projection.MaterialGroup = _Text.MaterialGroup

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IMATGROUP view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Group view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey MaterialGroup view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaterialGroup
MaterialAuthorizationGroup t023 begru
_Text _Text
@AbapCatalog: {
  sqlViewName: 'IMATGROUP',
  preserveKey: true,
  compiler.compareFilter: true
  }
@Analytics: { dataCategory: #DIMENSION }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Material Group'
@Search.searchable: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'MaterialGroup'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Consumption.ranked: true

define view I_MaterialGroup
  as select from t023
  association [0..*] to I_MaterialGroupText as _Text on $projection.MaterialGroup = _Text.MaterialGroup
{
      @ObjectModel.text.association: '_Text'

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key cast(t023.matkl as productgroup preserving type ) as MaterialGroup,
      @UI.hidden: true
      @Consumption.hidden: true
      t023.begru                                        as MaterialAuthorizationGroup,

      _Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T023"
],
"ASSOCIATED":
[
"I_MATERIALGROUPTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/