I_MachineType

DDL: I_MACHINETYPE SQL: IPPMACHINETYPE Type: view BASIC

Machine Type

I_MachineType is a Basic CDS View (Dimension) that provides data about "Machine Type" in SAP S/4HANA. It reads from 1 data source (tmaty) and exposes 2 fields with key field MachineType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tmaty typ from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MachineTypeText _Text $projection.MachineType = _Text.MachineType

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IPPMACHINETYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey MachineType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Machine Type view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MachineType tmaty matyp
_Text _Text
@AbapCatalog.sqlViewName: 'IPPMACHINETYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities:  [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'MachineType'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Machine Type'

define view I_MachineType
  as select from tmaty as typ
  association [0..*] to I_MachineTypeText as _Text  on  $projection.MachineType = _Text.MachineType

{
      @ObjectModel.text.association: '_Text'
      // Key

      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}  
  key typ.matyp as MachineType,

      // Associations

      _Text
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TMATY"
],
"ASSOCIATED":
[
"I_MACHINETYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/