P_CnsldtnExtnVersAcctgInteg
P_CnsldtnExtnVersAcctgInteg is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_CnsldtnVersion) and exposes 1 field with key field ConsolidationVersion. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CnsldtnVersion | _CnsldtnVersion | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | P_CnsldtnExtnVersRestatement | _CnsldtnExtnVersRestatement | _CnsldtnVersion.ConsolidationVersion = _CnsldtnExtnVersRestatement.ConsolidationVersion |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCSEXTVSTAI | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ClientHandling.type | #CLIENT_DEPENDENT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ConsolidationVersion | I_CnsldtnVersion | ConsolidationVersion |
@AbapCatalog.sqlViewName: 'PCSEXTVSTAI'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #COMPOSITE
@VDM.private:true
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #B,
sizeCategory: #S
}
@ClientHandling: {
type: #CLIENT_DEPENDENT,
algorithm: #SESSION_VARIABLE
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view P_CnsldtnExtnVersAcctgInteg
as select from I_CnsldtnVersion as _CnsldtnVersion
association [0..1] to P_CnsldtnExtnVersRestatement as _CnsldtnExtnVersRestatement on _CnsldtnVersion.ConsolidationVersion = _CnsldtnExtnVersRestatement.ConsolidationVersion
{
key _CnsldtnVersion.ConsolidationVersion,
case
when _CnsldtnExtnVersRestatement.ConsolidationVersion is null
then cast( '' as flag preserving type )
else cast( 'X' as flag preserving type )
end as CnsldtnUnitAcctgIntegIsDsbld
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CNSLDTNVERSION",
"P_CNSLDTNEXTNVERSRESTATEMENT"
],
"ASSOCIATED":
[
"P_CNSLDTNEXTNVERSRESTATEMENT"
],
"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