C_MaintenancePlanStatusVH
Maintenance Plan Status
C_MaintenancePlanStatusVH is a Consumption CDS View that provides data about "Maintenance Plan Status" in SAP S/4HANA. It reads from 1 data source (I_SystemStatusText) and exposes 3 fields with key fields SystemStatus, Language. It is exposed through 1 OData service (UI_MAINTENANCEITEM). It is used in 1 Fiori application: Manage Maintenance Items. Part of development package VDM_EAM_MAINTENANCEPLAN.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SystemStatusText | I_SystemStatusText | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.representativeKey | SystemStatus | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Maintenance Plan Status | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Consumption.ranked | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_MAINTENANCEITEM | UI_MAINTENANCEITEM | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F5356 | Manage Maintenance Items | Transactional | An application to Manage Maintenance Items, provides and comprehensive Maintenance Item view, create new Maintenance Item, edit existing Maintenance Item. |
Manage Maintenance Items
Business Role: Maintenance Planner
With the Manage Maintenance Items app, you as a maintenance planner can manage maintenance items. You can create maintenance items, decide how to evaluate final due date for a maintenance item, assign maintenance item to a maintenance plan, view details of a maintenance item, view status of an equipment or a functional location within a maintenance item, and so on.
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SystemStatus | SystemStatus | ||
| KEY | Language | Language | ||
| SystemStatusName | SystemStatusName |
@ObjectModel.representativeKey: 'SystemStatus'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Maintenance Plan Status'
@ObjectModel.dataCategory: #VALUE_HELP
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@Search.searchable: true
@VDM.viewType: #CONSUMPTION
@Consumption.ranked:true
define view entity C_MaintenancePlanStatusVH
as select from I_SystemStatusText
{
@ObjectModel.text.element: [ 'SystemStatusName' ]
@UI.hidden: true
key SystemStatus,
key Language,
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
SystemStatusName
}
where Language = $session.system_language
and ( SystemStatus = 'I0001' or SystemStatus = 'I0076' or SystemStatus = 'I0320' )
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