I_EHSQuestionPriorityText

DDL: I_EHSQUESTIONPRIORITYTEXT Type: view_entity BASIC Package: EHAIM_BO_QUESTIONNAIRE

EHS Question Priority - Text

I_EHSQuestionPriorityText is a Basic CDS View that provides data about "EHS Question Priority - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Language, EHSQnaireQuestionPriorityCode. It has 1 association to related views. Part of development package EHAIM_BO_QUESTIONNAIRE.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label EHS Question Priority - Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey EHSQnaireQuestionPriorityCode view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY EHSQnaireQuestionPriorityCode
EHSQnaireQuestionPriorityText ddtext
_Language _Language
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'EHS Question Priority - Text'
@VDM.viewType: #BASIC

@ObjectModel: {
  dataCategory: #TEXT,
  representativeKey: 'EHSQnaireQuestionPriorityCode',
  usageType: {
    serviceQuality: #A,
    sizeCategory: #S,
    dataClass: #MASTER
  }
}
define view entity I_EHSQuestionPriorityText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{

          @ObjectModel.foreignKey.association: '_Language'
          @Semantics.language: true
  key     ddlanguage                                       as Language,
  key     cast( domvalue_l as ehfnd_qnaire_ques_priority ) as EHSQnaireQuestionPriorityCode,
          @Semantics.text: true
          ddtext                                           as EHSQnaireQuestionPriorityText,
          _Language
}
where
      domname        = 'EHFND_QNAIRE_QUES_PRIORITY'
  and dd07t.as4local = 'A'