I_FinDtaConstcyErrMsgText
Error Message Description - Text
I_FinDtaConstcyErrMsgText is a Basic CDS View that provides data about "Error Message Description - Text" in SAP S/4HANA. It reads from 1 data source (t100) and exposes 3 fields with key fields Language, SystemMessageClass, ErrorMessageNumber.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t100 | t100 | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Error Message Description - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | sprsl | ||
| KEY | SystemMessageClass | arbgb | ||
| KEY | ErrorMessageNumber |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Error Message Description - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #L,
dataClass: #MIXED
}
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
define view entity I_FinDtaConstcyErrMsgText
as select from t100
{
@Semantics.language:true
key sprsl as Language,
key arbgb as SystemMessageClass,
key cast( msgnr as msgnr) as ErrorMessageNumber,
@Semantics.text:true
replace_regexpr( pcre => '&1|&2|&3|&4|:|=',
value => text,
with => '',
result_length => 100
) as ErrorMessageText
}
where
sprsl = $session.system_language
and arbgb = 'FINS_FDCA_GL_RECON'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T100"
],
"ASSOCIATED":
[],
"BASE":
[],
"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