R_MaintChklstCharcAggregate
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)
| Source | Alias | Join Type |
|---|---|---|
| R_MaintJobWorkItemChecklist | R_MaintJobWorkItemChecklist | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA