C_MalfunctionReportMyWorkItems
Repair Malfunction: My work items
C_MalfunctionReportMyWorkItems is a Consumption CDS View that provides data about "Repair Malfunction: My work items" in SAP S/4HANA. It reads from 1 data source (I_MaintOrderOperAndSubOper) and exposes 5 fields with key fields MaintenanceOrder, MaintenanceOrderOperation, MaintenanceOrderSubOperation. It has 1 association to related views. Part of development package ODATA_EAM_MALFUNCTION_MANAGE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MaintOrderOperAndSubOper | I_MaintOrderOperAndSubOper | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Employment | _Employment | _Employment.EmploymentInternalID = $projection.OperationPersonResponsible |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| AbapCatalog.sqlViewName | CMFREPMYWORKIT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Repair Malfunction: My work items | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaintenanceOrder | I_MaintOrderOperAndSubOper | MaintenanceOrder | |
| KEY | MaintenanceOrderOperation | I_MaintOrderOperAndSubOper | MaintenanceOrderOperation | |
| KEY | MaintenanceOrderSubOperation | I_MaintOrderOperAndSubOper | MaintenanceOrderSubOperation | |
| MaintOrderOperationInternalID | I_MaintOrderOperAndSubOper | MaintOrderOperationInternalID | ||
| OperationPersonResponsible | I_MaintOrderOperAndSubOper | OperationPersonResponsible |
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@AbapCatalog.sqlViewName: 'CMFREPMYWORKIT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #('TRANSACTIONAL_DATA')
@EndUserText.label: 'Repair Malfunction: My work items'
define view C_MalfunctionReportMyWorkItems
as select from I_MaintOrderOperAndSubOper
association [0..1] to I_Employment as _Employment on _Employment.EmploymentInternalID = $projection.OperationPersonResponsible
{
key I_MaintOrderOperAndSubOper.MaintenanceOrder,
key I_MaintOrderOperAndSubOper.MaintenanceOrderOperation,
key I_MaintOrderOperAndSubOper.MaintenanceOrderSubOperation,
I_MaintOrderOperAndSubOper.MaintOrderOperationInternalID,
I_MaintOrderOperAndSubOper.OperationPersonResponsible
}
where
_Employment._Employee.UserID = $session.user
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