I_AssetKeyFigureHierarchyText
Fixed Asset Key Figure Hierarchy Text
I_AssetKeyFigureHierarchyText is a Basic CDS View that provides data about "Fixed Asset Key Figure Hierarchy Text" in SAP S/4HANA. It reads from 1 data source (P_TF_AssetKeyFigHierarchyText) and exposes 8 fields with key fields AssetAccountingKeyFigureSet, AssetAcctgKeyFigureHierarchy, ValidityEndDate, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_TF_AssetKeyFigHierarchyText | P_TF_AssetKeyFigHierarchyText | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_AssetKeyFigureSet | _AssetKeyFigureSet | $projection.AssetAccountingKeyFigureSet = _AssetKeyFigureSet.AssetAccountingKeyFigureSet |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFASSETKFHIERT | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Fixed Asset Key Figure Hierarchy Text | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| ObjectModel.representativeKey | AssetAcctgKeyFigureHierarchy | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AssetAccountingKeyFigureSet | AssetAccountingKeyFigureSet | ||
| KEY | AssetAcctgKeyFigureHierarchy | AssetAcctgKeyFigureHierarchy | ||
| KEY | ValidityEndDate | ValidityEndDate | ||
| KEY | Language | Language | ||
| ValidityStartDate | ValidityStartDate | |||
| AssetAcctgKeyFigHierarchyName | AssetAcctgKeyFigHierarchyName | |||
| _AssetKeyFigureSet | _AssetKeyFigureSet | |||
| _Language | _Language |
@AbapCatalog: {sqlViewName: 'IFASSETKFHIERT', preserveKey: true}
@EndUserText.label: 'Fixed Asset Key Figure Hierarchy Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_ALLOWED
@ObjectModel: { representativeKey: 'AssetAcctgKeyFigureHierarchy',
dataCategory: #TEXT,
usageType.serviceQuality: #A,
usageType.sizeCategory: #L,
usageType.dataClass: #CUSTOMIZING }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
define view I_AssetKeyFigureHierarchyText
as select from P_TF_AssetKeyFigHierarchyText( P_SAPClient : $session.client )
association [0..1] to I_AssetKeyFigureSet as _AssetKeyFigureSet on $projection.AssetAccountingKeyFigureSet = _AssetKeyFigureSet.AssetAccountingKeyFigureSet
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_AssetKeyFigureSet'
key AssetAccountingKeyFigureSet,
key AssetAcctgKeyFigureHierarchy,
@Semantics.businessDate.to: true
key ValidityEndDate,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key Language,
@Semantics.businessDate.from: true
ValidityStartDate,
@Semantics.text
AssetAcctgKeyFigHierarchyName,
_AssetKeyFigureSet,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[],
"ASSOCIATED":
[
"I_ASSETKEYFIGURESET",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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