I_EHSDataCollInputMethodText

DDL: I_EHSDATACOLLINPUTMETHODTEXT Type: view_entity BASIC Package: EHENV_BO_MDEF_IMPL

EHS Data Collection Input Method - Text

I_EHSDataCollInputMethodText is a Basic CDS View that provides data about "EHS Data Collection Input Method - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields EHSDataCollectionInputMethod, Language. It has 1 association to related views. Part of development package EHENV_BO_MDEF_IMPL.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (12)

NameValueLevelField
EndUserText.label EHS Data Collection Input Method - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.modelingPattern #NONE view
ObjectModel.representativeKey EHSDataCollectionInputMethod view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EHSDataCollectionInputMethod
KEY Language dd07t ddlanguage Language
EHSDataCollInputMethodText Input Method Description
_Language _Language
@EndUserText.label: 'EHS Data Collection Input Method - Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED

@Analytics.dataExtraction.enabled: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel:
{
    dataCategory: #TEXT,
    resultSet.sizeCategory: #XS,
    supportedCapabilities: [#EXTRACTION_DATA_SOURCE],
    modelingPattern: #NONE,
    representativeKey: 'EHSDataCollectionInputMethod',
    usageType:
    {
        serviceQuality: #A,
        sizeCategory:  #L,
        dataClass: #META
    }
}

define view entity I_EHSDataCollInputMethodText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key cast( dd07t.domvalue_l as ehenv_mdef_input_method )  as EHSDataCollectionInputMethod,

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
      @EndUserText.label: 'Language'
  key dd07t.ddlanguage                                     as Language,

      @Semantics.text:true
      @EndUserText.label: 'Input Method Description'
      cast( dd07t.ddtext as ehenv_mdef_input_method_desc ) as EHSDataCollInputMethodText,

      _Language
}
where
      dd07t.domname  = 'EHENV_MDEF_INPUT_METHOD'
  and dd07t.as4local = 'A'