I_CnsldtnVersionType

DDL: I_CNSLDTNVERSIONTYPE Type: view BASIC

Consolidation Version Type

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

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnDomain P_CnsldtnDomain from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnVersionTypeText _Text $projection.CnsldtnVersionType = _Text.CnsldtnVersionType

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName ICSVERSTYP 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 CnsldtnVersionType view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name ConsolidationVersionType view
VDM.viewType #BASIC view
EndUserText.label Consolidation Version Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CnsldtnVersionType
DomainValue _Domain DomainValue
_Text _Text
@AbapCatalog:{
  sqlViewName: 'ICSVERSTYP',
  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: 'CnsldtnVersionType',
    modelingPattern: #ANALYTICAL_DIMENSION,
    supportedCapabilities: [#CDS_MODELING_DATA_SOURCE,
                            #CDS_MODELING_ASSOCIATION_TARGET,
                            #SQL_DATA_SOURCE,
                            #EXTRACTION_DATA_SOURCE,
                            #ANALYTICAL_DIMENSION ],
  sapObjectNodeType.name: 'ConsolidationVersionType'
}
@VDM.viewType: #BASIC
@EndUserText.label: 'Consolidation Version Type'

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

  association [0..*] to I_CnsldtnVersionTypeText as _Text on $projection.CnsldtnVersionType = _Text.CnsldtnVersionType

{
      @ObjectModel.text.association: '_Text'
  key cast(left(_Domain.DomainValue, 1) as fincs_cnsldtnversiontype) as CnsldtnVersionType,

      @Consumption.hidden: true
      @Analytics.hidden: true
      _Domain.DomainValue, // required for search


      /* associations */
      _Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_CNSLDTNDOMAIN"
],
"ASSOCIATED":
[
"I_CNSLDTNVERSIONTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/