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
NumberOfMaintNotifItems Items
_MaintenanceNotification _MaintenanceNotification
@AbapCatalog.sqlViewName: 'CMAINTNTFITEMCNT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.representativeKey: 'MaintenanceNotification'

@EndUserText.label: 'Item counter for Maintenance Notification'
define view C_MaintNotificationItemCount as select from I_MaintenanceNotificationItem 
association[0..1] to I_MaintenanceNotification as  _MaintenanceNotification        on $projection.MaintenanceNotification = _MaintenanceNotification.MaintenanceNotification
{
  @ObjectModel.foreignKey.association: '_MaintenanceNotification'
  key MaintenanceNotification,
  @EndUserText.label: 'Items'
  count( * ) as NumberOfMaintNotifItems,
  
  //Propagated associations

  _MaintenanceNotification
} group by MaintenanceNotification             
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MAINTENANCENOTIFICATIONITEM"
],
"ASSOCIATED":
[
"I_MAINTENANCENOTIFICATION"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/