I_DeprAreaForLedgerText

DDL: I_DEPRAREAFORLEDGERTEXT Type: view BASIC

Depreciation Area - Text

I_DeprAreaForLedgerText is a Basic CDS View that provides data about "Depreciation Area - Text" in SAP S/4HANA. It reads from 1 data source (P_DeprAreaForLedgerText) and exposes 9 fields with key fields CompanyCode, Ledger, AssetDepreciationArea, Language. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
P_DeprAreaForLedgerText P_DeprAreaForLedgerText from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[1..1] I_Ledger _Ledger $projection.Ledger = _Ledger.Ledger
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFIDEPRAREALDGRT view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Depreciation Area - Text view
VDM.viewType #BASIC view
ObjectModel.representativeKey AssetDepreciationArea view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode
KEY Ledger Ledger
KEY AssetDepreciationArea AssetDepreciationArea
KEY Language Language
AssetDepreciationAreaName AssetDepreciationAreaName
AssetDepreciationAreaShortName AssetDepreciationAreaShortName
_CompanyCode _CompanyCode
_Ledger _Ledger
_Language _Language
@AbapCatalog: {sqlViewName: 'IFIDEPRAREALDGRT', preserveKey: true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Depreciation Area - Text'
@VDM.viewType: #BASIC
@ObjectModel: { representativeKey: 'AssetDepreciationArea',
                dataCategory: #TEXT,
                usageType.serviceQuality: #B,
                usageType.sizeCategory: #S,
                usageType.dataClass: #CUSTOMIZING,
                modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
                supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT]
              }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true

define view I_DeprAreaForLedgerText
  as select from P_DeprAreaForLedgerText

  association [1..1] to I_CompanyCode as _CompanyCode on $projection.CompanyCode = _CompanyCode.CompanyCode
  association [1..1] to I_Ledger      as _Ledger      on $projection.Ledger = _Ledger.Ledger
  association [0..1] to I_Language    as _Language    on $projection.Language = _Language.Language
{
       @ObjectModel.foreignKey.association: '_CompanyCode'
  key  CompanyCode,
       @ObjectModel.foreignKey.association: '_Ledger'
  key  Ledger,
  key  AssetDepreciationArea,
       @ObjectModel.foreignKey.association: '_Language'
       @Semantics.language: true
  key  Language,

       @Semantics.text: true
       @Search.defaultSearchElement: true
       @Search.fuzzinessThreshold: 0.8
       @Search.ranking: #LOW
       AssetDepreciationAreaName,
       @Semantics.text: true
       AssetDepreciationAreaShortName,

       /* Associations */
       _CompanyCode,
       _Ledger,
       _Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_DEPRAREAFORLEDGERTEXT"
],
"ASSOCIATED":
[
"I_COMPANYCODE",
"I_LANGUAGE",
"I_LEDGER"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/