C_Malfunctionreporttype
Malfunction Report Types
C_Malfunctionreporttype is a Consumption CDS View that provides data about "Malfunction Report Types" in SAP S/4HANA. It reads from 1 data source (I_PMNotificationType) and exposes 2 fields with key field NotificationType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PMNotificationType | I_PMNotificationType | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| AbapCatalog.sqlViewName | CMFREPORTTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Malfunction Report Types | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | NotificationType | I_PMNotificationType | NotificationType | |
| _Text | I_PMNotificationType | _Text |
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #S
@AbapCatalog.sqlViewName: 'CMFREPORTTYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Malfunction Report Types'
define view C_Malfunctionreporttype
as select from I_PMNotificationType {
key I_PMNotificationType.NotificationType,
// Propagate association
I_PMNotificationType._Text
} where NotificationOrigin = '02'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PMNOTIFICATIONTYPE"
],
"ASSOCIATED":
[
"I_PMNOTIFICATIONTYPETEXT"
],
"BASE":
[
"I_PMNOTIFICATIONTYPE"
],
"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