R_MaintChklstCharcAggregate

DDL: R_MAINTCHKLSTCHARCAGGREGATE Type: view_entity COMPOSITE

View for Maintenance Checklist Characteristics aggregate

R_MaintChklstCharcAggregate is a Composite CDS View that provides data about "View for Maintenance Checklist Characteristics aggregate" in SAP S/4HANA. It reads from 1 data source (R_MaintJobWorkItemChecklist) and exposes 5 fields with key fields MaintenanceOrder, MaintenanceOrderOperation.

Data Sources (1)

SourceAliasJoin Type
R_MaintJobWorkItemChecklist R_MaintJobWorkItemChecklist from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label View for Maintenance Checklist Characteristics aggregate view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceOrder MaintenanceOrder
KEY MaintenanceOrderOperation MaintenanceOrderOperation
InspCharAcceptedCount
InspCharRejectedCount
InspCharOpenCount
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'View for Maintenance Checklist Characteristics aggregate'
@VDM.usage.type: [#TRANSACTIONAL_PROCESSING_SERVICE]
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #L, dataClass: #TRANSACTIONAL}
define view entity R_MaintChklstCharcAggregate as select from R_MaintJobWorkItemChecklist
{

  key MaintenanceOrder,
  key MaintenanceOrderOperation,

  max(InspCharAcceptedCount)  as InspCharAcceptedCount,
  max(InspCharRejectedCount)  as InspCharRejectedCount,
  max(InspCharOpenCount)      as InspCharOpenCount

}
group by MaintenanceOrder, MaintenanceOrderOperation
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"R_MAINTJOBWORKITEMCHECKLIST"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/