I_CnsldtnTaskLogItemType

DDL: I_CNSLDTNTASKLOGITEMTYPE Type: view_entity BASIC Package: FIN_CS_TASK_LOG_API

Consolidation Task Log Item Type

I_CnsldtnTaskLogItemType is a Basic CDS View (Dimension) that provides data about "Consolidation Task Log Item Type" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomain) and exposes 3 fields with key field CnsldtnTaskLogItemType. It has 1 association to related views. Part of development package FIN_CS_TASK_LOG_API.

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnDomain P_CnsldtnDomain from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnTaskLogItemTypeT _Text $projection.CnsldtnTaskLogItemType = _Text.CnsldtnTaskLogItemType

Annotations (15)

NameValueLevelField
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED 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 CnsldtnTaskLogItemType view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name CnsldtnTaskLogItemType view
Search.searchable true view
VDM.viewType #BASIC view
EndUserText.label Consolidation Task Log Item Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CnsldtnTaskLogItemType
DomainValue _Domain DomainValue
_Text _Text
@Analytics: {
  dataCategory: #DIMENSION,
  internalName: #LOCAL,
  dataExtraction.enabled: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
    usageType: {
        dataClass: #CUSTOMIZING,
        serviceQuality: #A,
        sizeCategory: #S
    },
    resultSet.sizeCategory: #XS,
    representativeKey: 'CnsldtnTaskLogItemType',
    modelingPattern: #ANALYTICAL_DIMENSION,
    supportedCapabilities: [#CDS_MODELING_DATA_SOURCE,
                            #CDS_MODELING_ASSOCIATION_TARGET,
                            #SQL_DATA_SOURCE,
                            #EXTRACTION_DATA_SOURCE,
                            #ANALYTICAL_DIMENSION ],
    sapObjectNodeType.name: 'CnsldtnTaskLogItemType'
}
@Search.searchable: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Consolidation Task Log Item Type'

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

  association [0..*] to I_CnsldtnTaskLogItemTypeT as _Text on $projection.CnsldtnTaskLogItemType = _Text.CnsldtnTaskLogItemType

{
      @ObjectModel.text.association: '_Text'
  key cast(left(_Domain.DomainValue, 2) as fincs_lineitemtype preserving type ) as CnsldtnTaskLogItemType,

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



      _Text
};