I_NumberOfOpnNotifByTechObj

DDL: I_NUMBEROFOPNNOTIFBYTECHOBJ SQL: INUMOPENNTFSBYTO Type: view COMPOSITE

Number of Open Notifications by Technical Object

I_NumberOfOpnNotifByTechObj is a Composite CDS View that provides data about "Number of Open Notifications by Technical Object" in SAP S/4HANA. It reads from 1 data source (I_MaintNotificationTechObj) and exposes 3 fields with key fields TechnicalObject, TechObjIsEquipOrFuncnlLoc.

Data Sources (1)

SourceAliasJoin Type
I_MaintNotificationTechObj I_MaintNotificationTechObj from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName INUMOPENNTFSBYTO view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Number of Open Notifications by Technical Object view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY TechnicalObject I_MaintNotificationTechObj TechnicalObject
KEY TechObjIsEquipOrFuncnlLoc I_MaintNotificationTechObj TechObjIsEquipOrFuncnlLoc
NmbrOfOpenMaintNotifications
@AbapCatalog.sqlViewName: 'INUMOPENNTFSBYTO'
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Number of Open Notifications by Technical Object'


@VDM.viewType: #COMPOSITE

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

@AccessControl.personalData.blocking: #NOT_REQUIRED

define view I_NumberOfOpnNotifByTechObj
  as select from I_MaintNotificationTechObj
{


  key I_MaintNotificationTechObj.TechnicalObject,

  key I_MaintNotificationTechObj.TechObjIsEquipOrFuncnlLoc,


      cast( count( * ) as eam_open_notifications ) as NmbrOfOpenMaintNotifications


}
where
  NotifProcessingPhase = '1' // Outstanding

group by
  TechnicalObject,
  TechObjIsEquipOrFuncnlLoc
having
      TechnicalObject != ''
  and TechObjIsEquipOrFuncnlLoc != ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MAINTNOTIFICATIONTECHOBJ"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/