I_CnsldtnUnitIntegration

DDL: I_CNSLDTNUNITINTEGRATION Type: view BASIC

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)

SourceAliasJoin Type
dd07l _Domain from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnUnitIntegrationText _Text $projection.CnsldtnDataTransferMethod = _Text.CnsldtnDataTransferMethod

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/