I_FixedAssetPeriodTypeText

DDL: I_FIXEDASSETPERIODTYPETEXT SQL: IFASSETPETPT Type: view BASIC Package: ODATA_AA_ASSET_OVERVIEWPAGE

Fixed Asset - Period Type Text

I_FixedAssetPeriodTypeText is a Basic CDS View that provides data about "Fixed Asset - Period Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, PeriodType. It has 2 associations to related views. Part of development package ODATA_AA_ASSET_OVERVIEWPAGE.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IFASSETPETPT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey PeriodType view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #BASIC view
EndUserText.label Fixed Asset - Period Type Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY PeriodType
PeriodTypeText
_PeriodType _PeriodType
_Language _Language
@AbapCatalog.sqlViewName: 'IFASSETPETPT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
    dataCategory: #TEXT,
    representativeKey: 'PeriodType',
    usageType: {
        dataClass: #META,
        sizeCategory: #S,
        serviceQuality: #A
    }
}
@VDM.viewType: #BASIC
@EndUserText.label: 'Fixed Asset - Period Type Text'
define view I_FixedAssetPeriodTypeText 
  as select from dd07t
  association [1..1] to I_FixedAssetPeriodType as _PeriodType on $projection.PeriodType = _PeriodType.PeriodType
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @Semantics.language
  key ddlanguage                                                                 as Language,
      @ObjectModel.foreignKey.association: '_PeriodType'
  key cast(substring(domvalue_l, 1, 2) as faa_period_type preserving type) as PeriodType,
      @Semantics.text
      cast ( substring ( ddtext, 1, 60 ) as ddtext ) as PeriodTypeText,
       @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
      _PeriodType,
      _Language
}
where domname = 'FAA_D_PERIOD_TYPE' and as4local = 'A'