I_MaintenancePackageValueHelp

DDL: I_MAINTENANCEPACKAGEVALUEHELP Type: view_entity COMPOSITE

Maintenance Strategy Package

I_MaintenancePackageValueHelp is a Composite CDS View that provides data about "Maintenance Strategy Package" in SAP S/4HANA. It reads from 1 data source (I_MaintenancePackage) and exposes 6 fields with key fields MaintenanceStrategy, MaintenancePackage. It is exposed through 2 OData services (UI_MAINTENANCE_PLAN, UI_MAINTENANCEITEM). It is used in 2 Fiori applications: Manage Maintenance Plans, Manage Maintenance Items.

Data Sources (1)

SourceAliasJoin Type
I_MaintenancePackage I_MaintenancePackage from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Maintenance Strategy Package view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
Search.searchable true view

OData Services (2)

ServiceBindingVersionContractRelease
UI_MAINTENANCE_PLAN UI_MAINTENANCE_PLAN V2 C1 NOT_RELEASED
UI_MAINTENANCEITEM UI_MAINTENANCEITEM V2 C1 NOT_RELEASED

Fiori Apps (2)

App IDApp NameTypeDescription
F5325 Manage Maintenance Plans Transactional An application to Manage Maintenance Plans, provides and comprehensive maintenance plan view including general data, scheduling information, assigned Maintenance Items, as well as review Maintenance calls, create new maintenance plan, edit existing maintenance plan.
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 Plans

Business Role: Maintenance Planner

With the Manage Maintenance Plans app, you as a maintenance planner can view, create, change, schedule, activate, and delete maintenance plans.

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 (6)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceStrategy MaintenanceStrategy Strategy Fields
KEY MaintenancePackage MaintenancePackage Sort pos.
MaintenanceCycleShortText Maintenance Cycle
MaintenancePackageText Maintenance Cycle Text
_MaintenanceStrategy _MaintenanceStrategy
_MaintenancePackageText _MaintenancePackageText

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 I_MaintenancePackageValueHelp.
-- 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 I_MaintenancePackageValueHelp AS
SELECT
  MaintenanceStrategy,
  MaintenancePackage,
  _MaintenancePackageText[1:Language = $session.system_language].MaintenanceCycleShortText AS MaintenanceCycleShortText,
  _MaintenancePackageText[1:Language = $session.system_language].MaintenancePackageText AS MaintenancePackageText
FROM I_MaintenancePackage
;