I_CnsldtnJrnlEntrSource

DDL: I_CNSLDTNJRNLENTRSOURCE Type: view BASIC

Consolidation Journal Entry Source

I_CnsldtnJrnlEntrSource is a Basic CDS View (Dimension) that provides data about "Consolidation Journal Entry Source" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomain) and exposes 3 fields with key field ConsolidationJrnlEntrSource. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnDomain P_CnsldtnDomain from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnJrnlEntrSourceT _Text $projection.ConsolidationJrnlEntrSource = _Text.ConsolidationJrnlEntrSource

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ICCJRNLENTRS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey ConsolidationJrnlEntrSource view
Search.searchable true view
VDM.viewType #BASIC view
EndUserText.label Consolidation Journal Entry Source view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationJrnlEntrSource
DomainValue _Domain DomainValue
_Text _Text
@AbapCatalog:{
  sqlViewName: 'ICCJRNLENTRS',
  compiler.compareFilter: true,
  preserveKey: true
  }
@Analytics: {
  dataCategory: #DIMENSION,
  internalName: #LOCAL
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel:{
  usageType: {
    dataClass: #META,
    serviceQuality: #A,
    sizeCategory: #S},
  resultSet.sizeCategory: #XS,
  representativeKey: 'ConsolidationJrnlEntrSource'
  }
@Search.searchable: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Consolidation Journal Entry Source'

/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK", "KEY_CHECK" ]  } */
define view I_CnsldtnJrnlEntrSource
  as select from P_CnsldtnDomain(P_DomainName : 'FINCS_JOURNALENTRY_SOURCE') as _Domain

  association [0..*] to I_CnsldtnJrnlEntrSourceT as _Text on $projection.ConsolidationJrnlEntrSource = _Text.ConsolidationJrnlEntrSource
{

      @ObjectModel.text.association: '_Text'
  key cast(_Domain.DomainValue as fincs_journalentry_source) as ConsolidationJrnlEntrSource,

      @Consumption.hidden: true
      @Analytics.hidden: true
      @Search: {
        defaultSearchElement: true,
        ranking: #HIGH,
        fuzzinessThreshold: 0.8
      }
      _Domain.DomainValue, // required for search



      @ObjectModel.association.boundFields.dataMatchesSourceAndTargetTypes: true
      _Text
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_CNSLDTNDOMAIN"
],
"ASSOCIATED":
[
"I_CNSLDTNJRNLENTRSOURCET"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/