I_CostComponentHierarchyText
Cost Breakdown Hierarchy - Text
I_CostComponentHierarchyText is a Basic CDS View that provides data about "Cost Breakdown Hierarchy - Text" in SAP S/4HANA. It reads from 1 data source (hrrp_dirt_n) and exposes 6 fields with key fields CostComponentHierarchy, ValidityEndDate, Language. It has 1 association to related views. Part of development package FINS_UCB_HIER.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_dirt_n | hrrp_dirt_n | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Cost Breakdown Hierarchy - Text | view | |
| ObjectModel.representativeKey | CostComponentHierarchy | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view | |
| ObjectModel.sapObjectNodeType.name | CostComponentHierarchyText | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CostComponentHierarchy | |||
| KEY | ValidityEndDate | |||
| KEY | Language | spras | ||
| ValidityStartDate | ||||
| CostComponentHierarchyName | hrytxt | |||
| _Language | _Language |
@EndUserText.label: 'Cost Breakdown Hierarchy - Text'
@ObjectModel.representativeKey: 'CostComponentHierarchy'
@Analytics: { dataExtraction.enabled: true }
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #MANDATORY
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT, #EXTRACTION_DATA_SOURCE ]
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #S
}
@Search.searchable: true
@ObjectModel.sapObjectNodeType.name:'CostComponentHierarchyText'
define view entity I_CostComponentHierarchyText
as select from hrrp_dirt_n
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast(hrrp_dirt_n.hryid as fucb_cost_comp_hierid preserving type ) as CostComponentHierarchy,
@Semantics.businessDate.to: true
key cast(hrrp_dirt_n.hryvalto as fis_datbi preserving type ) as ValidityEndDate,
@Semantics.language
key spras as Language,
@Semantics.businessDate.from: true
cast(hrrp_dirt_n.hryvalfrom as fis_datab preserving type ) as ValidityStartDate,
@Semantics.text
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
hrytxt as CostComponentHierarchyName,
_Language
}
where
hrrp_dirt_n.hrytyp = 'CB01';
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