C_MaintenancePlanStatusVH

DDL: C_MAINTENANCEPLANSTATUSVH Type: view_entity CONSUMPTION Package: VDM_EAM_MAINTENANCEPLAN

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)

SourceAliasJoin Type
I_SystemStatusText I_SystemStatusText from

Annotations (12)

NameValueLevelField
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)

ServiceBindingVersionContractRelease
UI_MAINTENANCEITEM UI_MAINTENANCEITEM V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
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)

KeyFieldSource TableSource FieldDescription
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' )