I_UtilsDeviceMsmtTypeText

DDL: I_UTILSDEVICEMSMTTYPETEXT SQL: IEDVCEMSMTTYPET Type: view BASIC

Device Measurement Type - Text

I_UtilsDeviceMsmtTypeText is a Basic CDS View that provides data about "Device Measurement Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, UtilsDeviceMeasurementType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_UtilsDeviceMsmtType _UtilsDeviceMsmtType $projection.UtilsDeviceMeasurementType = _UtilsDeviceMsmtType.UtilsDeviceMeasurementType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
EndUserText.label Device Measurement Type - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey UtilsDeviceMeasurementType view
AbapCatalog.sqlViewName IEDVCEMSMTTYPET view
ObjectModel.usageType.serviceQuality A view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.dataClass META view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY UtilsDeviceMeasurementType
UtilsDeviceMeasurementTypeName ddtext
_UtilsDeviceMsmtType _UtilsDeviceMsmtType
_Language _Language
@EndUserText.label: 'Device Measurement Type - Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'UtilsDeviceMeasurementType'
@AbapCatalog.sqlViewName: 'IEDVCEMSMTTYPET'
@ObjectModel.usageType.serviceQuality: 'A'
@ObjectModel.usageType.sizeCategory: 'L'
@ObjectModel.usageType.dataClass: 'META'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter:true
//@AbapCatalog.preserveKey:true

@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_UtilsDeviceMsmtTypeText
  as select from dd07t
  association [0..1] to I_UtilsDeviceMsmtType as _UtilsDeviceMsmtType on $projection.UtilsDeviceMeasurementType = _UtilsDeviceMsmtType.UtilsDeviceMeasurementType
  association [0..1] to I_Language            as _Language            on $projection.Language = _Language.Language

{
      @Semantics.language: true
      // @ObjectModel.foreignKey.association: '_Language'

  key ddlanguage                                                                   as Language,
      @ObjectModel.foreignKey.association: '_UtilsDeviceMsmtType'
      //key domvalue_l as UtilsDeviceMeasurementType,

  key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as messart ) as UtilsDeviceMeasurementType,
      @Semantics.text:true
      ddtext                                                                       as UtilsDeviceMeasurementTypeName,
      _UtilsDeviceMsmtType,
      _Language

}
where
      dd07t.domname  = 'MESSART'
  and dd07t.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_UTILSDEVICEMSMTTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/