I_RealDepreciationAreaByCoCode

DDL: I_REALDEPRECIATIONAREABYCOCODE Type: view BASIC

Real Depreciation Areas of Company Code

I_RealDepreciationAreaByCoCode is a Basic CDS View (Dimension) that provides data about "Real Depreciation Areas of Company Code" in SAP S/4HANA. It reads from 1 data source (t093b) and exposes 8 fields with key fields CompanyCode, AssetRealDepreciationArea. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t093b t093b from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..1] I_Currency _Currency $projection.Currency = _Currency.Currency

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IFIREALDPRARCO view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
EndUserText.label Real Depreciation Areas of Company Code view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey AssetRealDepreciationArea view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode bukrs
KEY AssetRealDepreciationArea afabe
Currency waers
AssetAcctgLastClosedFiscalYear abgja
FinancialStatementVariant versn_011
FiscalYearVariant periv
_CompanyCode _CompanyCode
_Currency _Currency
@AbapCatalog: {sqlViewName: 'IFIREALDPRARCO', preserveKey: true}
@Analytics: { dataCategory: #DIMENSION }
@EndUserText.label: 'Real Depreciation Areas of Company Code'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: 'AssetRealDepreciationArea',
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #S,
                usageType.dataClass: #CUSTOMIZING }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true

define view I_RealDepreciationAreaByCoCode
  as select from t093b

  association [0..1] to I_CompanyCode as _CompanyCode on $projection.CompanyCode = _CompanyCode.CompanyCode
  association [0..1] to I_Currency    as _Currency    on $projection.Currency = _Currency.Currency

{
      @ObjectModel.foreignKey.association: '_CompanyCode'
  key bukrs                           as CompanyCode,
  key afabe                           as AssetRealDepreciationArea,

      @ObjectModel.foreignKey.association: '_Currency'
      waers                           as Currency,
      abgja                           as AssetAcctgLastClosedFiscalYear,
      versn_011                       as FinancialStatementVariant,
      periv                           as FiscalYearVariant,

      _CompanyCode,
      _Currency
}