C_MaintOrderTypeVH

DDL: C_MAINTORDERTYPEVH SQL: CMAINTORDTYPEVH Type: view CONSUMPTION

Maintenance Order Type Value Help

C_MaintOrderTypeVH is a Consumption CDS View that provides data about "Maintenance Order Type Value Help" in SAP S/4HANA. It reads from 1 data source (I_OrderType) and exposes 2 fields with key field MaintenanceOrderType.

Data Sources (1)

SourceAliasJoin Type
I_OrderType I_OrderType from

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName CMAINTORDTYPEVH view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Maintenance Order Type Value Help view
ObjectModel.representativeKey MaintenanceOrderType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.resultSet.sizeCategory #XS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceOrderType I_OrderType OrderType Order Type
MaintenanceOrderTypeName Order Type 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_MaintOrderTypeVH.
-- 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.
-- SQL view name: CMAINTORDTYPEVH

CREATE VIEW C_MaintOrderTypeVH AS
SELECT
  I_OrderType.OrderType AS MaintenanceOrderType,
  I_OrderType._Text[1:Language = $session.system_language].OrderTypeName AS MaintenanceOrderTypeName
FROM I_OrderType
;