I_EHSLocClassifierNameText

DDL: I_EHSLOCCLASSIFIERNAMETEXT Type: view BASIC

Location classifier - Text

I_EHSLocClassifierNameText is a Basic CDS View that provides data about "Location classifier - Text" in SAP S/4HANA. It reads from 1 data source (I_EHSLocClassifierName) and exposes 7 fields with key fields EHSLocClassifierID, EHSLocClassifierCentralID, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_EHSLocClassifierName LocClassifierNameText from

Associations (1)

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

Annotations (11)

NameValueLevelField
EndUserText.label Location classifier - Text view
AbapCatalog.sqlViewName ILOCCLASSNAMETXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.dataCategory #TEXT view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY EHSLocClassifierID I_EHSLocClassifierName EHSLocClassifierID
KEY EHSLocClassifierCentralID I_EHSLocClassifierName EHSLocClassifierCentralID
KEY Language I_EHSLocClassifierName Language
EHSLocClassifierNameUUID I_EHSLocClassifierName EHSLocClassifierNameUUID
EHSLocClassifierUUID I_EHSLocClassifierName EHSLocClassifierUUID
EHSLocClassifierText I_EHSLocClassifierName EHSLocClassifierText
_Language _Language
@EndUserText.label: 'Location classifier - Text'

@AbapCatalog:
{
  sqlViewName: 'ILOCCLASSNAMETXT',
  compiler.compareFilter: true,
  preserveKey:true
}

// no authorization check required because view only reads customizing for which a check is not needed

@AccessControl.authorizationCheck: #NOT_REQUIRED

--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #BASIC

@ObjectModel:
{
  usageType:
  {
    dataClass: #MIXED,
    sizeCategory: #S,
    serviceQuality: #C
  },
  dataCategory: #TEXT
}

define view I_EHSLocClassifierNameText
  --Select data from text table
  as select from I_EHSLocClassifierName as LocClassifierNameText

  --association to I_Language
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{

  key LocClassifierNameText.EHSLocClassifierID,
  key LocClassifierNameText.EHSLocClassifierCentralID,
  key LocClassifierNameText.Language,
      LocClassifierNameText.EHSLocClassifierNameUUID,
      LocClassifierNameText.EHSLocClassifierUUID,
      LocClassifierNameText.EHSLocClassifierText,

      /* Associations */
      _Language

}


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