I_CnsldtnSystemMessageTypeT
Consolidation System Message Type - Text
I_CnsldtnSystemMessageTypeT is a Basic CDS View that provides data about "Consolidation System Message Type - Text" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomainText) and exposes 6 fields with key fields Language, CnsldtnSystemMessageType. It has 1 association to related views. Part of development package FIN_CS_TASK_LOG_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_CnsldtnDomainText | P_CnsldtnDomainText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_CnsldtnSystemMessageType | _SystemMessageType | $projection.CnsldtnSystemMessageType = _SystemMessageType.CnsldtnSystemMessageType |
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 | CnsldtnSystemMessageType | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.sapObjectNodeType.name | CnsldtnSystemMessageTypeText | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Consolidation System Message 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: 'CnsldtnSystemMessageType',
modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT,
#SQL_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET ],
sapObjectNodeType.name: 'CnsldtnSystemMessageTypeText'
}
@Search.searchable: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Consolidation System Message Type - Text'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ] } */
define view entity I_CnsldtnSystemMessageTypeT
as select from P_CnsldtnDomainText(P_DomainName : 'FINCS_MSG_TYPE') as _DomainT
association [1..1] to I_CnsldtnSystemMessageType as _SystemMessageType on $projection.CnsldtnSystemMessageType = _SystemMessageType.CnsldtnSystemMessageType
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(_DomainT.Language as spras preserving type ) as Language,
@ObjectModel.foreignKey.association: '_SystemMessageType'
key cast(left(_DomainT.DomainValue, 1) as fincs_msg_type preserving type ) as CnsldtnSystemMessageType,
@Semantics.text
@Search: {
defaultSearchElement: true,
ranking: #LOW,
fuzzinessThreshold: 0.8
}
cast(_DomainT.DomainValueText as fincs_msg_type_text preserving type ) as CnsldtnSystemMessageTypeText,
@Consumption.hidden: true
@Analytics.hidden: true
_DomainT.DomainValue,
_SystemMessageType,
_DomainT._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