I_MessageType
Error Message Type
I_MessageType is a Basic CDS View (Dimension) that provides data about "Error Message Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field PRAMessageType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_MessageTypeText | _Text | $projection.PRAMessageType = _Text.PRAMessageType |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Error Message Type | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IPRAMSGTYP | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | PRAMessageType | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PRAMessageType | |||
| _Text | _Text |
@EndUserText.label: 'Error Message Type'
@Analytics.dataCategory: #DIMENSION
//@Analytics.dataExtraction.enabled: true
@Analytics.internalName:#LOCAL
@AbapCatalog.compiler.compareFilter:true
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IPRAMSGTYP'
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'PRAMessageType'
//@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION , #SQL_DATA_SOURCE , #CDS_MODELING_DATA_SOURCE , #CDS_MODELING_ASSOCIATION_TARGET ]
//@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
//@ObjectModel.sapObjectNodeType.name: 'PRAMessageType'
@ObjectModel.dataCategory: #VALUE_HELP
define view I_MessageType as select from dd07l
association [0..1] to I_MessageTypeText as _Text
on $projection.PRAMessageType = _Text.PRAMessageType
{
@ObjectModel.text.association: '_Text'
key cast (domvalue_l as pramsgtype ) as PRAMessageType,
_Text
}
where
domname = 'PRAMSGTYPE'
and as4local = 'A';
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