I_CnsldtnUnitIntegration
Consolidation Unit Integration
I_CnsldtnUnitIntegration is a Basic CDS View that provides data about "Consolidation Unit Integration" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field CnsldtnDataTransferMethod. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | _Domain | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_CnsldtnUnitIntegrationText | _Text | $projection.CnsldtnDataTransferMethod = _Text.CnsldtnDataTransferMethod |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICSCUINTEG | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | CnsldtnDataTransferMethod | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Consolidation Unit Integration | view | |
| VDM.viewType | #BASIC | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CnsldtnDataTransferMethod | |||
| DomainValue | dd07l | domvalue_l | ||
| _Text | _Text |
@AbapCatalog: {
sqlViewName: 'ICSCUINTEG',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
usageType: {
dataClass: #MASTER,
serviceQuality: #B,
sizeCategory: #S
},
representativeKey: 'CnsldtnDataTransferMethod'
}
@Metadata.ignorePropagatedAnnotations: true
@EndUserText: {
label: 'Consolidation Unit Integration'
}
@VDM: {
viewType: #BASIC
}
define view I_CnsldtnUnitIntegration
as select from dd07l as _Domain
association [0..*] to I_CnsldtnUnitIntegrationText as _Text on $projection.CnsldtnDataTransferMethod = _Text.CnsldtnDataTransferMethod
{
@ObjectModel.text.association: '_Text'
key cast( substring(_Domain.domvalue_l, 1, 1) as fincs_datatransfermethod ) as CnsldtnDataTransferMethod,
_Domain.domvalue_l as DomainValue, // required for search
// association
_Text // required for text retrieval and navigation
}
where
_Domain.domname = 'FINCS_DATATRANSFERMETHOD'
and _Domain.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_CNSLDTNUNITINTEGRATIONTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"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