C_MaintNotificationTypeVH

DDL: C_MAINTNOTIFICATIONTYPEVH SQL: CMAINTNTFTYPEVH Type: view CONSUMPTION

Maintenance Notification Type Value Help

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

Data Sources (1)

SourceAliasJoin Type
I_PMNotificationType I_PMNotificationType from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CMAINTNTFTYPEVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey NotificationType view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Maintenance Notification Type Value Help view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY NotificationType I_PMNotificationType NotificationType Notifictn Type
NotificationTypeName Notification 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_MaintNotificationTypeVH.
-- 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: CMAINTNTFTYPEVH

CREATE VIEW C_MaintNotificationTypeVH AS
SELECT
  I_PMNotificationType.NotificationType AS NotificationType,
  I_PMNotificationType._Text[1:Language=$session.system_language].NotificationTypeName AS NotificationTypeName
FROM I_PMNotificationType
;