I_OptionExerciseTypeText

DDL: I_OPTIONEXERCISETYPETEXT SQL: IOPTNEXERTYPET Type: view BASIC

Option exercise type - Text

I_OptionExerciseTypeText is a Basic CDS View that provides data about "Option exercise type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields OptionExerciseType, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t DomainText from

Associations (1)

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

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IOPTNEXERTYPET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Option exercise type - Text view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY OptionExerciseType
KEY Language dd07t ddlanguage
OptionExerciseTypeName
_Language _Language
@AbapCatalog.sqlViewName: 'IOPTNEXERTYPET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Option exercise type - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel:{
    dataCategory: #TEXT,
    usageType : {
        sizeCategory: #S,
        serviceQuality: #X,
        dataClass: #MIXED
    }
}
define view I_OptionExerciseTypeText
  as select from dd07t as DomainText
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.text.element:'OptionExerciseTypeName'
  key cast(DomainText.domvalue_l as soptaus)                                as OptionExerciseType,

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

      @Semantics.text: true
      cast(DomainText.ddtext as option_exercise_type_name preserving type ) as OptionExerciseTypeName,

      _Language
}
where
      DomainText.domname  = 'SOPTAUS'
  and DomainText.as4local = 'A'