C_MaintNotificationItemCount

DDL: C_MAINTNOTIFICATIONITEMCOUNT SQL: CMAINTNTFITEMCNT Type: view CONSUMPTION

Item counter for Maintenance Notification

C_MaintNotificationItemCount is a Consumption CDS View that provides data about "Item counter for Maintenance Notification" in SAP S/4HANA. It reads from 1 data source (I_MaintenanceNotificationItem) and exposes 3 fields with key field MaintenanceNotification.

Data Sources (1)

SourceAliasJoin Type
I_MaintenanceNotificationItem I_MaintenanceNotificationItem from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CMAINTNTFITEMCNT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.representativeKey MaintenanceNotification view
EndUserText.label Item counter for Maintenance Notification view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceNotification MaintenanceNotification Notification
NumberOfMaintNotifItems Items
_MaintenanceNotification _MaintenanceNotification

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_MaintNotificationItemCount.
-- 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: CMAINTNTFITEMCNT

CREATE VIEW C_MaintNotificationItemCount AS
SELECT
  MaintenanceNotification,
  count( * ) AS NumberOfMaintNotifItems
FROM I_MaintenanceNotificationItem
;