I_AssetKeyFigure

DDL: I_ASSETKEYFIGURE Type: view BASIC

Asset Key Figure

I_AssetKeyFigure is a Basic CDS View (Dimension) that provides data about "Asset Key Figure" in SAP S/4HANA. It reads from 1 data source (faac_kfc) and exposes 2 fields with key field AssetAccountingKeyFigure. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
faac_kfc faac_kfc from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_AssetKeyFigureText _Text $projection.AssetAccountingKeyFigure = _Text.AssetAccountingKeyFigure

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IASSETKEYFIGURE view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
EndUserText.label Asset Key Figure view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey AssetAccountingKeyFigure view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AssetAccountingKeyFigure faac_kfc key_figure_code
_Text _Text
@AbapCatalog: {sqlViewName: 'IASSETKEYFIGURE', preserveKey: true}
@Analytics: { dataCategory: #DIMENSION }
@EndUserText.label: 'Asset Key Figure'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: 'AssetAccountingKeyFigure',
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #M,
                usageType.dataClass: #CUSTOMIZING,
                modelingPattern: #ANALYTICAL_DIMENSION,
                supportedCapabilities: [#ANALYTICAL_DIMENSION]
              }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true

define view I_AssetKeyFigure
  as select from faac_kfc

  association [0..*] to I_AssetKeyFigureText as _Text on $projection.AssetAccountingKeyFigure = _Text.AssetAccountingKeyFigure

{
      @ObjectModel.text.association: '_Text'
  key faac_kfc.key_figure_code as AssetAccountingKeyFigure,

      _Text

}