C_MaintenanceNotificationVH

DDL: C_MAINTENANCENOTIFICATIONVH SQL: CMAINTNOTIFVH Type: view CONSUMPTION

Maintenance Notification Value Help

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

Data Sources (1)

SourceAliasJoin Type
I_MaintenanceNotification I_MaintenanceNotification from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CMAINTNOTIFVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey MaintenanceNotification view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Maintenance Notification Value Help view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceNotification I_MaintenanceNotification MaintenanceNotification Notification
NotificationText I_MaintenanceNotification NotificationText Description
NotificationType I_MaintenanceNotification NotificationType Notifictn Type
_PMNotifMaintenanceData _PMNotifMaintenanceData

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_MaintenanceNotificationVH.
-- 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: CMAINTNOTIFVH

CREATE VIEW C_MaintenanceNotificationVH AS
SELECT
  I_MaintenanceNotification.MaintenanceNotification AS MaintenanceNotification,
  I_MaintenanceNotification.NotificationText AS NotificationText,
  I_MaintenanceNotification.NotificationType AS NotificationType
FROM I_MaintenanceNotification
;