C_MaintenancePlanStatusVH

DDL: C_MAINTENANCEPLANSTATUSVH Type: view_entity CONSUMPTION

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.

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SystemStatus SystemStatus System status
KEY Language Language Report Text Language
SystemStatusName SystemStatusName Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_MaintenancePlanStatusVH.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW C_MaintenancePlanStatusVH AS
SELECT
  SystemStatus,
  Language,
  SystemStatusName
FROM I_SystemStatusText
;