I_CnsldtnReportingLevel

DDL: I_CNSLDTNREPORTINGLEVEL Type: view BASIC

Consolidation Reporting Level

I_CnsldtnReportingLevel is a Basic CDS View (Dimension) that provides data about "Consolidation Reporting Level" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomain) and exposes 4 fields with key field ConsolidationReportingLevel. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnDomain P_CnsldtnDomain from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnReportingLevelT _Text $projection.ConsolidationReportingLevel = _Text.ConsolidationReportingLevel
[0..*] I_CnsldtnReportingLevelText_2 _Text_2 $projection.ConsolidationReportingLevel = _Text_2.ConsolidationReportingLevel

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName ICCRPTLEVL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey ConsolidationReportingLevel view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Search.searchable true view
VDM.viewType #BASIC view
EndUserText.label Consolidation Reporting Level view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationReportingLevel
DomainValue _Domain DomainValue
_Text _Text
_Text_2 _Text_2
@AbapCatalog:{
  sqlViewName: 'ICCRPTLEVL',
  compiler.compareFilter: true,
  preserveKey: true
  }
@Analytics: {
  dataCategory: #DIMENSION,
  internalName: #LOCAL,
  dataExtraction.enabled: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
    usageType: {
      dataClass: #CUSTOMIZING,
      serviceQuality: #A,
      sizeCategory: #S
    },
    resultSet.sizeCategory: #XS,
    representativeKey: 'ConsolidationReportingLevel',
    modelingPattern: #ANALYTICAL_DIMENSION,
    supportedCapabilities: [#CDS_MODELING_DATA_SOURCE,
                            #CDS_MODELING_ASSOCIATION_TARGET,
                            #SQL_DATA_SOURCE,
                            #EXTRACTION_DATA_SOURCE,
                            #ANALYTICAL_DIMENSION ]
}
@Search.searchable: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Consolidation Reporting Level'

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

  association [0..*] to I_CnsldtnReportingLevelT as _Text on $projection.ConsolidationReportingLevel = _Text.ConsolidationReportingLevel
  
  association [0..*] to I_CnsldtnReportingLevelText_2 as _Text_2 on $projection.ConsolidationReportingLevel = _Text_2.ConsolidationReportingLevel
  
{
      @ObjectModel.text.association: '_Text_2'
  key cast(left(_Domain.DomainValue, 2) as fincs_reportinglevel preserving type ) as ConsolidationReportingLevel,

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



      @ObjectModel.association.boundFields.dataMatchesSourceAndTargetTypes: true
      @API.element: {releaseState: #DEPRECATED, successor: '_Text_2'}
      _Text,
      _Text_2
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_CNSLDTNDOMAIN"
],
"ASSOCIATED":
[
"I_CNSLDTNREPORTINGLEVELT",
"I_CNSLDTNREPORTINGLEVELTEXT_2"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/