FAC_CDS_SET_PRFTCENTERNODE
Universal Hierarchy Cost Center Node
FAC_CDS_SET_PRFTCENTERNODE is a CDS View that provides data about "Universal Hierarchy Cost Center Node" in SAP S/4HANA. It reads from 2 data sources (setheader, setheadert) and exposes 4 fields. Part of development package FINS_FI_UH.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| setheader | header | from |
| setheadert | text | left_outer |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FACV_SET_CEPCEDG | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Universal Hierarchy Cost Center Node | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| nodevalue | setheader | setname | ||
| nodetxt | setheadert | descript | ||
| descriptasnltxtendasNodeValueText | ||||
| nodeid |
@AbapCatalog.sqlViewName: 'FACV_SET_CEPCEDG'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Universal Hierarchy Cost Center Node'
//@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
dataClass: #MIXED,
serviceQuality: #C,
sizeCategory: #S
}
define view FAC_CDS_SET_PRFTCENTERNODE as select from setheader as header
left outer join setheadert as text on header.setclass = text.setclass
and header.subclass = text.subclass
and header.setname = text.setname
and text.langu = $session.system_language
{
cast(header.subclass as cctrl) as controllingarea,
header.setname as nodevalue,
text.descript as nodetxt,
case
when text.descript is null or text.descript = '' then cast( header.setname as nltxt )
else cast( concat( header.setname, concat(' (',concat( text.descript, ')' ) ) ) as nltxt ) end as NodeValueText,
cast( concat( concat(header.subclass,'/'),header.setname) as nodid ) as nodeid
}
where header.setclass = '0106'
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