I_EHSMethodOfUseText

DDL: I_EHSMETHODOFUSETEXT SQL: IEHSMETHODOFUSET Type: view BASIC

EHS Method of Use Text

I_EHSMethodOfUseText is a Basic CDS View that provides data about "EHS Method of Use Text" in SAP S/4HANA. It reads from 1 data source (ehfndc_meth_t) and exposes 5 fields with key fields MethodOfUse, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
ehfndc_meth_t ehfndc_meth_t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_EHSMethodOfUse _EHSMethodOfUse $projection.MethodOfUse = _EHSMethodOfUse.MethodOfUse association[0..1] to I_Language as _Language on $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
EndUserText.label EHS Method of Use Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey MethodOfUse view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IEHSMETHODOFUSET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MethodOfUse
_EHSMethodOfUse _EHSMethodOfUse
KEY Language ehfndc_meth_t language
_Language _Language
MethodOfUseName
@EndUserText.label: 'EHS Method of Use Text'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'MethodOfUse'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IEHSMETHODOFUSET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true


// Client handling by session 

@ClientHandling.algorithm: #SESSION_VARIABLE

// used for BOBF Master Data Object

@ObjectModel.usageType:{ serviceQuality: #C,        // < 15 msec   

                         sizeCategory:  #S,         // < 1.000

                         dataClass: #CUSTOMIZING } 
                         
define view I_EHSMethodOfUseText
  as select from ehfndc_meth_t

  association [0..1] to I_EHSMethodOfUse as _EHSMethodOfUse on $projection.MethodOfUse = _EHSMethodOfUse.MethodOfUse
  association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key cast (code  as  ehfnd_method_of_use_nc  preserving type ) as MethodOfUse,
  _EHSMethodOfUse,
  
  @Semantics.language: true
  key ehfndc_meth_t.language    as Language,
  _Language,
 
  @Semantics.text: true
  cast ( description as ehfnd_method_of_use_desc preserving type ) as MethodOfUseName

}