I_CnsldtnUnitElimNode
Cnsldtn Unit Mgmt Elim Node
I_CnsldtnUnitElimNode is a Basic CDS View (Dimension) that provides data about "Cnsldtn Unit Mgmt Elim Node" in SAP S/4HANA. It reads from 1 data source (hrrp_node) and exposes 2 fields with key field ConsolidationUnit. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrrp_node | _node | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_CnsldtnUnitElimNodeText | _Text | $projection.ConsolidationUnit = _Text.ConsolidationUnit |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICSUNITELIMNODE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Metadata.allowExtensions | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.representativeKey | ConsolidationUnit | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Cnsldtn Unit Mgmt Elim Node | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ConsolidationUnit | |||
| _Text | _Text |
@AbapCatalog:{
sqlViewName: 'ICSUNITELIMNODE',
compiler.compareFilter: true,
preserveKey: true
}
@Analytics: {
dataCategory: #DIMENSION,
internalName: #LOCAL,
dataExtraction.enabled: true
}
@AccessControl.authorizationCheck: #MANDATORY
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata:{
ignorePropagatedAnnotations: true,
allowExtensions:true
}
@ObjectModel:{
usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #M},
representativeKey: 'ConsolidationUnit',
modelingPattern: #ANALYTICAL_DIMENSION,
supportedCapabilities: [#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#SQL_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE,
#ANALYTICAL_DIMENSION]
}
@VDM.viewType: #BASIC
@EndUserText.label: 'Cnsldtn Unit Mgmt Elim Node'
/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK", "KEY_CHECK" ] } */
define view I_CnsldtnUnitElimNode
as select from hrrp_node as _node
association [0..*] to I_CnsldtnUnitElimNodeText as _Text on $projection.ConsolidationUnit = _Text.ConsolidationUnit
{
@ObjectModel.text.association: '_Text'
@Consumption.valueHelpDefinition: [{
entity: {
name: 'I_CnsldtnUnitForEliminationVH',
element: 'ConsolidationUnit'
}
}]
key cast(left(_node.nodevalue, 25) as fincs_elim_unit preserving type ) as ConsolidationUnit,
_Text
}
where
_node.nodetype = '$'
and _node.hrytype = 'CS17'
and _node.nodecls = 'Y1' // aka Dimension
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"HRRP_NODE"
],
"ASSOCIATED":
[
"I_CNSLDTNUNITELIMNODETEXT"
],
"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