I_AssetTransactionType
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)
| Source | Alias | Join Type |
|---|---|---|
| tabw | tabw | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_AssetTransactionTypeText | _Text | $projection.AssetTransactionType = _Text.AssetTransactionType |
| [0..1] | I_AssetTransactionTypeGroup | _TransactionTypeGroup | $projection.AssetTransactionTypeGroup = _TransactionTypeGroup.AssetTransactionTypeGroup |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA