I_CnsldtnQuestionTypeT
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)
| Source | Alias | Join Type |
|---|---|---|
| P_CnsldtnDomainText | P_CnsldtnDomainText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_CnsldtnQuestionType | _QuestionType | $projection.ConsolidationQuestionType = _QuestionType.ConsolidationQuestionType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA