E_CnsldtnUnitByTimeVersion
Consolidation Unit by Time and Version - Extension
E_CnsldtnUnitByTimeVersion is a Extension CDS View that provides data about "Consolidation Unit by Time and Version - Extension" in SAP S/4HANA. It reads from 1 data source (fincs_bunit_atvd) and exposes 4 fields with key fields ConsolidationUnit, CnsldtnUnitAttributeVersion, FromFiscalYearPeriod.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fincs_bunit_atvd | Persistence | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ECSCONSUNITATVD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| VDM.viewType | #EXTENSION | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| EndUserText.label | Consolidation Unit by Time and Version - Extension | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ConsolidationUnit | fincs_bunit_atvd | bunit | |
| KEY | CnsldtnUnitAttributeVersion | fincs_bunit_atvd | cuavs | |
| KEY | FromFiscalYearPeriod | |||
| ToFiscalYearPeriod |
@AbapCatalog.sqlViewName: 'ECSCONSUNITATVD'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
// Do NOT add @ClientHandling.algorithm: #SESSION_VARIABLE as it prohibits self join optimization
@VDM.viewType: #EXTENSION
@ObjectModel:{
usageType: {
dataClass: #MASTER,
serviceQuality: #B,
sizeCategory: #M}
}
@EndUserText.label: 'Consolidation Unit by Time and Version - Extension'
define view E_CnsldtnUnitByTimeVersion
as select from fincs_bunit_atvd as Persistence
{
//key Persistence.dimen as ConsolidationDimension,
key Persistence.bunit as ConsolidationUnit,
key Persistence.cuavs as CnsldtnUnitAttributeVersion,
key cast (Persistence.fromyearper as fins_fyearperiod) as FromFiscalYearPeriod,
cast (Persistence.toyearper as fins_fyearperiod) as ToFiscalYearPeriod
}
//where
// dimen = 'Y1'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FINCS_BUNIT_ATVD"
],
"ASSOCIATED":
[],
"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