I_FinancialStatementHierNodeT
Financial Statement Hierarchy Node - Text
I_FinancialStatementHierNodeT is a Basic CDS View that provides data about "Financial Statement Hierarchy Node - Text" in SAP S/4HANA. It reads from 1 data source (hrrp_nodet_n) and exposes 10 fields with key fields FinancialStatementHierarchy, HierarchyNode, ValidityEndDate, Language. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_nodet_n | hrrp_nodet_n | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..*] | I_GLAccountHierarchy | _Hierarchy | $projection.FinancialStatementHierarchy = _Hierarchy.GLAccountHierarchy |
| [0..1] | I_FinancialStatementHierNode | _node | $projection.FinancialStatementHierarchy = _node.FinancialStatementHierarchy and $projection.HierarchyNode = _node.HierarchyNode and $projection.ValidityEndDate = _node.ValidityEndDate |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFISTMTHERNDT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Financial Statement Hierarchy Node - Text | view | |
| ObjectModel.representativeKey | HierarchyNode | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FinancialStatementHierarchy | hrrp_nodet_n | hryid_42 | |
| KEY | HierarchyNode | hrrp_nodet_n | hrynode | |
| KEY | ValidityEndDate | hrrp_nodet_n | hryvalto | |
| KEY | Language | hrrp_nodet_n | spras | |
| HierarchyNodeText | hrrp_nodet_n | nodetxt | ||
| HierarchyNodeShortText | ||||
| ValidityStartDate | hrrp_nodet_n | hryvalfrom | ||
| FinStmntNodeFormattedID | _node | FinStmntNodeFormattedID | ||
| _Language | _Language | |||
| _Hierarchy | _Hierarchy |
@AbapCatalog.sqlViewName: 'IFISTMTHERNDT'
@ObjectModel.dataCategory: #TEXT
@AccessControl.authorizationCheck: #CHECK
@AbapCatalog.buffering.status: #NOT_ALLOWED
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Financial Statement Hierarchy Node - Text'
@ObjectModel.representativeKey: 'HierarchyNode'
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT, #EXTRACTION_DATA_SOURCE]
@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.preserveKey:true
@Analytics: { dataExtraction.enabled: true}
@VDM.viewType: #BASIC
define view I_FinancialStatementHierNodeT
as select from hrrp_nodet_n
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..*] to I_GLAccountHierarchy as _Hierarchy on $projection.FinancialStatementHierarchy = _Hierarchy.GLAccountHierarchy
association [0..1] to I_FinancialStatementHierNode as _node on $projection.FinancialStatementHierarchy = _node.FinancialStatementHierarchy
and $projection.HierarchyNode = _node.HierarchyNode
and $projection.ValidityEndDate = _node.ValidityEndDate
{
@ObjectModel.foreignKey.association: '_Hierarchy'
key hrrp_nodet_n.hryid_42 as FinancialStatementHierarchy,
@ObjectModel.text.element: 'HierarchyNodeText'
key hrrp_nodet_n.hrynode as HierarchyNode,
@Semantics.businessDate.to: true
key hrrp_nodet_n.hryvalto as ValidityEndDate,
@Semantics.language: true
key hrrp_nodet_n.spras as Language,
@Semantics.text: true
hrrp_nodet_n.nodetxt as HierarchyNodeText,
@Semantics.text: true
substring(hrrp_nodet_n.nodetxt, 1, 20) as HierarchyNodeShortText,
@Semantics.businessDate.from: true
hrrp_nodet_n.hryvalfrom as ValidityStartDate,
_node.FinStmntNodeFormattedID,
_Language,
_Hierarchy
}
where
hrrp_nodet_n.hrytyp = 'FSVN'
and not hrrp_nodet_n.hryid like '0109/%'
and not hrrp_nodet_n.hryid like '0102/%'
and not hrrp_nodet_n.hryid like 'H109/%'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_FINANCIALSTATEMENTHIERNODE",
"HRRP_NODET_N"
],
"ASSOCIATED":
[
"I_FINANCIALSTATEMENTHIERNODE",
"I_GLACCOUNTHIERARCHY",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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