I_ConfignDeprecationCodeText

DDL: I_CONFIGNDEPRECATIONCODETEXT SQL: ICONFIGDEPCODET Type: view BASIC Package: SD_CDS_INFO_PROVIDER

Configuration Deprecation Code Text

I_ConfignDeprecationCodeText is a Basic CDS View that provides data about "Configuration Deprecation Code Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, ConfigurationDeprecationCode. It has 1 association to related views. Part of development package SD_CDS_INFO_PROVIDER.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ICONFIGDEPCODET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.viewEnhancementCategory #NONE view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
ClientHandling.type #CLIENT_INDEPENDENT view
EndUserText.label Configuration Deprecation Code Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ConfigurationDeprecationCode view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY ConfigurationDeprecationCode
DomainValue dd07t domvalue_l
ConfignDeprecationCodeName
_Language _Language
@AbapCatalog.sqlViewName: 'ICONFIGDEPCODET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.viewEnhancementCategory: #NONE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@ClientHandling.type: #CLIENT_INDEPENDENT
@EndUserText.label: 'Configuration Deprecation Code Text'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ConfigurationDeprecationCode'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.sizeCategory: #S
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
define view I_ConfignDeprecationCodeText
  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 cast( dd07t.ddlanguage as spras preserving type )                    as Language,
      @ObjectModel.text.element: ['ConfignDeprecationCodeName']
  key cast( dd07t.domvalue_l as config_deprecation_code )                  as ConfigurationDeprecationCode,
      @Consumption.hidden: true
      dd07t.domvalue_l                                                     as DomainValue,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true
      cast( dd07t.ddtext as config_deprecation_code_name preserving type ) as ConfignDeprecationCodeName,
      _Language
}
where
      dd07t.domname  = 'CONFIG_DEPRECATION_CODE'
  and dd07t.as4local = 'A'
  and dd07t.as4vers  = '0000'