I_CnsldtnQuestionTypeT

DDL: I_CNSLDTNQUESTIONTYPET Type: view_entity BASIC Package: FIN_CS_MD_QUESTION

Consolidation Question Type - Text

I_CnsldtnQuestionTypeT is a Basic CDS View that provides data about "Consolidation Question Type - Text" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomainText) and exposes 6 fields with key fields Language, ConsolidationQuestionType. It has 1 association to related views. Part of development package FIN_CS_MD_QUESTION.

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnDomainText P_CnsldtnDomainText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_CnsldtnQuestionType _QuestionType $projection.ConsolidationQuestionType = _QuestionType.ConsolidationQuestionType

Annotations (13)

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 ConsolidationQuestionType view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name ConsolidationQuestionTypeText view
Search.searchable true view
VDM.viewType #BASIC view
EndUserText.label Consolidation Question Type - Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY ConsolidationQuestionType
ConsolidationQuestionTypeText
DomainValue _Source DomainValue
_QuestionType _QuestionType
_Language _Source _Language
@Analytics: {
  dataExtraction.enabled: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
    usageType: {
        dataClass: #CUSTOMIZING,
        serviceQuality: #A,
        sizeCategory: #S
    },
    dataCategory: #TEXT,
    representativeKey: 'ConsolidationQuestionType',
    modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
    supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT,
                            #SQL_DATA_SOURCE,
                            #EXTRACTION_DATA_SOURCE,
                            #CDS_MODELING_DATA_SOURCE,
                            #CDS_MODELING_ASSOCIATION_TARGET ],
    sapObjectNodeType.name: 'ConsolidationQuestionTypeText'
}
@Search.searchable: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Consolidation Question Type - Text'

/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ]  } */
define view entity I_CnsldtnQuestionTypeT
  as select from P_CnsldtnDomainText(P_DomainName : 'FINCS_QUESTIONTYPE') as _Source

  association [1..1] to I_CnsldtnQuestionType as _QuestionType on $projection.ConsolidationQuestionType = _QuestionType.ConsolidationQuestionType

{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast(_Source.Language as spras preserving type )                          as Language,

      @ObjectModel.foreignKey.association: '_QuestionType'
  key cast(left(_Source.DomainValue, 1) as fincs_questiontype preserving type ) as ConsolidationQuestionType,

      @Semantics.text
      @Search: {
        defaultSearchElement: true,
        ranking: #LOW,
        fuzzinessThreshold: 0.8
      }
      cast(_Source.DomainValueText as fincs_questiontypetext preserving type )  as ConsolidationQuestionTypeText,

      @Consumption.hidden: true
      @Analytics.hidden: true
      _Source.DomainValue,


      /* associations */
      _QuestionType,
      _Source._Language
}