I_BillingDocTypeHierNodeTxt
Billing Doc Type Hierarchy Node - Text
I_BillingDocTypeHierNodeTxt is a Basic CDS View that provides data about "Billing Doc Type Hierarchy Node - Text" in SAP S/4HANA. It reads from 1 data source (hrrp_nodet_n) and exposes 8 fields with key fields BillingDocumentTypeHierarchy, HierarchyNode, ValidityEndDate, Language. It has 2 associations to related views. Part of development package FINS_FIS_FICO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_nodet_n | hrrp_nodet_n | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..*] | I_BillingDocumentTypeHier | _Hierarchy | $projection.BillingDocumentTypeHierarchy = _Hierarchy.BillingDocumentTypeHierarchy |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.dataCategory | #TEXT | view | |
| EndUserText.label | Billing Doc Type Hierarchy Node - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Search.searchable | true | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.sapObjectNodeType.name | BillingDocHierarchyNodeText | view | |
| ObjectModel.representativeKey | HierarchyNode | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BillingDocumentTypeHierarchy | |||
| KEY | HierarchyNode | hrrp_nodet_n | hrynode | |
| KEY | ValidityEndDate | |||
| KEY | Language | hrrp_nodet_n | spras | |
| HierarchyNodeText | hrrp_nodet_n | nodetxt | ||
| ValidityStartDate | ||||
| _Language | _Language | |||
| _Hierarchy | _Hierarchy |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@ObjectModel.dataCategory: #TEXT
@EndUserText.label: 'Billing Doc Type Hierarchy Node - Text'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #MANDATORY
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT, #EXTRACTION_DATA_SOURCE ]
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #L
}
@Search.searchable: true
@Analytics.dataExtraction.enabled: true
@ObjectModel.sapObjectNodeType.name:'BillingDocHierarchyNodeText'
@ObjectModel.representativeKey: 'HierarchyNode'
define view entity I_BillingDocTypeHierNodeTxt
as select from hrrp_nodet_n
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..*] to I_BillingDocumentTypeHier as _Hierarchy on $projection.BillingDocumentTypeHierarchy = _Hierarchy.BillingDocumentTypeHierarchy
{
@ObjectModel.foreignKey.association: '_Hierarchy'
key cast ( hrrp_nodet_n.hryid as fis_hryid_billingdoctype preserving type ) as BillingDocumentTypeHierarchy,
key hrrp_nodet_n.hrynode as HierarchyNode,
@Semantics.businessDate.to: true
key cast (hrrp_nodet_n.hryvalto as fis_datbi) as ValidityEndDate,
@Semantics.language: true
key hrrp_nodet_n.spras as Language,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
hrrp_nodet_n.nodetxt as HierarchyNodeText,
@Semantics.businessDate.from: true
cast (hrrp_nodet_n.hryvalfrom as fis_datab) as ValidityStartDate,
_Language,
_Hierarchy
}
where
hrrp_nodet_n.hrytyp = 'U504';
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