I_CnsldtnProcPerdCycTypeText

DDL: I_CNSLDTNPROCPERDCYCTYPETEXT Type: view_entity BASIC Package: FIN_CS_TASK_MON_PROCPERTYPE

Consolidation Process Period Type - Text

I_CnsldtnProcPerdCycTypeText is a Basic CDS View that provides data about "Consolidation Process Period Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, CnsldtnProcessPeriodCycleType. It has 2 associations to related views. Part of development package FIN_CS_TASK_MON_PROCPERTYPE.

Data Sources (1)

SourceAliasJoin Type
dd07t DomainText from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_CnsldtnProcPeriodCycleType _CnsldtnProcessPeriodCycleType $projection.CnsldtnProcessPeriodCycleType = _CnsldtnProcessPeriodCycleType.CnsldtnProcessPeriodCycleType
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
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.dataCategory #TEXT view
ObjectModel.representativeKey CnsldtnProcessPeriodCycleType view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name CnsldtnProcPeriodCycleTypeText view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Consolidation Process Period Type - Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY CnsldtnProcessPeriodCycleType
CnsldtnProcPeriodCycleTypeText
DomainValue dd07t domvalue_l
_CnsldtnProcessPeriodCycleType _CnsldtnProcessPeriodCycleType
_Language _Language
@AbapCatalog.viewEnhancementCategory: [#PROJECTION_LIST]
@Analytics.dataExtraction.enabled: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
    usageType: {
        dataClass: #CUSTOMIZING,
        serviceQuality: #A,
        sizeCategory: #S
    },
    dataCategory: #TEXT,
    representativeKey: 'CnsldtnProcessPeriodCycleType',
    modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
    supportedCapabilities: [#CDS_MODELING_DATA_SOURCE,
                            #CDS_MODELING_ASSOCIATION_TARGET,
                            #SQL_DATA_SOURCE,
                            #EXTRACTION_DATA_SOURCE,
                            #LANGUAGE_DEPENDENT_TEXT ],
    sapObjectNodeType.name: 'CnsldtnProcPeriodCycleTypeText'
}
@Search.searchable: true
@VDM:{
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@EndUserText.label: 'Consolidation Process Period Type - Text'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ] } */
define view entity I_CnsldtnProcPerdCycTypeText as 
  select from dd07t as DomainText
    
    association [1..1] to I_CnsldtnProcPeriodCycleType as _CnsldtnProcessPeriodCycleType on $projection.CnsldtnProcessPeriodCycleType = _CnsldtnProcessPeriodCycleType.CnsldtnProcessPeriodCycleType
    association [1..1] to I_Language                   as _Language                      on $projection.Language = _Language.Language

{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast( DomainText.ddlanguage as spras preserving type )                                   as Language,
      
      @ObjectModel.foreignKey.association: '_CnsldtnProcessPeriodCycleType'
  key cast( left( DomainText.domvalue_l,3 ) as fincs_process_per_cycl_tpe preserving type )    as CnsldtnProcessPeriodCycleType,

      @Semantics.text
      @Search: {
        defaultSearchElement: true,
        ranking:#LOW,
        fuzzinessThreshold: 0.7
      }
      cast( DomainText.ddtext as fincs_process_per_cycl_tpe_txt preserving type )               as CnsldtnProcPeriodCycleTypeText,
      
      @Consumption.hidden: true
      @Analytics.hidden: true
      DomainText.domvalue_l                                                                     as DomainValue,
      
      _CnsldtnProcessPeriodCycleType,
      _Language
}
where
      DomainText.domname  = 'FINCS_PROCESS_PER_CYCL_TPE'
  and DomainText.as4local = 'A';