P_CnsldtnUnitElimNodeText
Cnsldtn Unit Mgmt Elim Node - Text
P_CnsldtnUnitElimNodeText is a Basic CDS View that provides data about "Cnsldtn Unit Mgmt Elim Node - Text" in SAP S/4HANA. It reads from 2 data sources (hrrp_node, hrrp_nodet) and exposes 4 fields with key fields spras, nodevalue. Part of development package FIN_CS_MD_UNIT.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_node | _node | inner |
| hrrp_nodet | _nodet | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | spras | hrrp_nodet | spras | |
| KEY | nodevalue | hrrp_node | nodevalue | |
| nodecls | hrrp_nodet | nodecls | ||
| nodetxt |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel:{
usageType: {
dataClass: #MASTER,
serviceQuality: #B,
sizeCategory: #M}
}
@VDM:{
viewType: #BASIC,
private:true
}
define view entity P_CnsldtnUnitElimNodeText
as select from hrrp_nodet as _nodet
inner join hrrp_node as _node on _nodet.hryid = _node.hryid
and _nodet.hryvalto = _node.hryvalto
and _nodet.hrynode = _node.hrynode
and _node.nodetype = '$'
and _node.hrytype = 'CS17'
and _node.nodecls = 'Y1'
{
@Semantics.language
key _nodet.spras,
key _node.nodevalue,
_nodet.nodecls,
@Semantics.text
max(_nodet.nodetxt) as nodetxt
}
where
_nodet.hrytyp = 'CS17'
//and _nodet.node_timedep = ''
and _nodet.nodecls = 'Y1'
group by
_nodet.hrynode,
_nodet.spras,
_nodet.nodecls,
_node.nodevalue;
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