I_AssetTransactionType

DDL: I_ASSETTRANSACTIONTYPE Type: view BASIC Package: FINS_FIS_AA_MD

Asset Transaction Type

I_AssetTransactionType is a Basic CDS View (Dimension) that provides data about "Asset Transaction Type" in SAP S/4HANA. It reads from 1 data source (tabw) and exposes 7 fields with key field AssetTransactionType. It has 2 associations to related views. Part of development package FINS_FIS_AA_MD.

Data Sources (1)

SourceAliasJoin Type
tabw tabw from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_AssetTransactionTypeText _Text $projection.AssetTransactionType = _Text.AssetTransactionType
[0..1] I_AssetTransactionTypeGroup _TransactionTypeGroup $projection.AssetTransactionTypeGroup = _TransactionTypeGroup.AssetTransactionTypeGroup

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IFIASSETTRTYP view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
EndUserText.label Asset Transaction Type view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.sapObjectNodeType.name AssetTransactionType view
ObjectModel.representativeKey AssetTransactionType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY AssetTransactionType bwasl
AssetTransactionTypeGroup bwagrp
AstTransTypeIsFrbdnInMnlPostg xabuch
DefaultDebitCreditCode anshkz
AstRetirementRevenueIsRequired xerlos
_Text _Text
_TransactionTypeGroup _TransactionTypeGroup
@AbapCatalog: {sqlViewName: 'IFIASSETTRTYP', preserveKey: true}
@Analytics: { dataCategory: #DIMENSION }
@EndUserText.label: 'Asset Transaction Type'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { sapObjectNodeType.name: 'AssetTransactionType',
                representativeKey: 'AssetTransactionType',
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #S,
                usageType.dataClass: #CUSTOMIZING,
                modelingPattern: #ANALYTICAL_DIMENSION,
                supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #SEARCHABLE_ENTITY]
              }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true

define view I_AssetTransactionType
  as select from tabw

  association [0..*] to I_AssetTransactionTypeText  as _Text                 on $projection.AssetTransactionType = _Text.AssetTransactionType
  association [0..1] to I_AssetTransactionTypeGroup as _TransactionTypeGroup on $projection.AssetTransactionTypeGroup = _TransactionTypeGroup.AssetTransactionTypeGroup

{
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key bwasl  as AssetTransactionType,

      @ObjectModel.foreignKey.association: '_TransactionTypeGroup'
      bwagrp as AssetTransactionTypeGroup,
      xabuch as AstTransTypeIsFrbdnInMnlPostg,
      anshkz as DefaultDebitCreditCode,
      xerlos as AstRetirementRevenueIsRequired,

      _Text,
      _TransactionTypeGroup
}