I_CnsldtnVersionTypeText
Consolidation Version Type - Text
I_CnsldtnVersionTypeText is a Basic CDS View that provides data about "Consolidation Version Type - Text" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomainText) and exposes 6 fields with key fields Language, CnsldtnVersionType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_CnsldtnDomainText | P_CnsldtnDomainText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_CnsldtnVersionType | _CnsldtnVersionType | $projection.CnsldtnVersionType = _CnsldtnVersionType.CnsldtnVersionType |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICSVERSTYPT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | 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.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CnsldtnVersionType | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Consolidation Version Type - Text | view |
@AbapCatalog:{
sqlViewName: 'ICSVERSTYPT',
compiler.compareFilter: true,
preserveKey: true
}
@Analytics: {
dataExtraction.enabled: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
},
dataCategory: #TEXT,
representativeKey: 'CnsldtnVersionType',
modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT,
#SQL_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET ]
}
@Search.searchable: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Consolidation Version Type - Text'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ] } */
define view I_CnsldtnVersionTypeText
as select from P_CnsldtnDomainText(P_DomainName : 'FC_EXT_VERSION_TYPE') as _DomainT
association [1..1] to I_CnsldtnVersionType as _CnsldtnVersionType on $projection.CnsldtnVersionType = _CnsldtnVersionType.CnsldtnVersionType
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(_DomainT.Language as spras preserving type ) as Language,
@ObjectModel.foreignKey.association: '_CnsldtnVersionType'
key cast(left(_DomainT.DomainValue, 1) as fincs_cnsldtnversiontype) as CnsldtnVersionType,
@Semantics.text
@Search: {
defaultSearchElement: true,
ranking: #LOW,
fuzzinessThreshold: 0.7
}
_DomainT.DomainValueText as CnsldtnVersionTypeText,
@Consumption.hidden: true
@Analytics.hidden: true
_DomainT.DomainValue,
/* associations */
_Language,
_CnsldtnVersionType
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_CNSLDTNDOMAINTEXT"
],
"ASSOCIATED":
[
"I_CNSLDTNVERSIONTYPE",
"I_LANGUAGE"
],
"BASE":
[
"P_CNSLDTNDOMAINTEXT"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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