I_CnsldtnUnitIntegrationText
Consolidation Unit Integration Text
I_CnsldtnUnitIntegrationText is a Basic CDS View that provides data about "Consolidation Unit Integration Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, CnsldtnDataTransferMethod. It has 2 associations to related views. Part of development package FIN_CS_MD_UNIT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | _DomainText | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_CnsldtnUnitIntegration | _CnsldtnUnitIntegration | $projection.CnsldtnDataTransferMethod = _CnsldtnUnitIntegration.CnsldtnDataTransferMethod |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICSCUINTEGT | 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.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CnsldtnDataTransferMethod | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Consolidation Unit Integration Text | view | |
| VDM.viewType | #BASIC | view |
@AbapCatalog: {
sqlViewName: 'ICSCUINTEGT',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
usageType: {
dataClass: #MASTER,
serviceQuality: #B,
sizeCategory: #S
},
dataCategory: #TEXT,
representativeKey: 'CnsldtnDataTransferMethod'
}
@Metadata.ignorePropagatedAnnotations: true
@EndUserText: {
label: 'Consolidation Unit Integration Text'
}
@VDM: {
viewType: #BASIC
}
define view I_CnsldtnUnitIntegrationText
as select from dd07t as _DomainText
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_CnsldtnUnitIntegration as _CnsldtnUnitIntegration on $projection.CnsldtnDataTransferMethod = _CnsldtnUnitIntegration.CnsldtnDataTransferMethod
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language
key _DomainText.ddlanguage as Language,
@ObjectModel.foreignKey.association: '_CnsldtnUnitIntegration'
key cast( substring(_DomainText.domvalue_l, 1, 1) as fincs_datatransfermethod ) as CnsldtnDataTransferMethod,
@Semantics.text
_DomainText.ddtext as CnsldtnDataTransferMethodText,
// association
_Language, // required for value help retrieval
_CnsldtnUnitIntegration // required for value help retrieval and navigation
}
where
_DomainText.domname = 'FINCS_DATATRANSFERMETHOD'
and _DomainText.as4local = 'A'
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