I_MaintenanceTaskListGroup
Maintenance Task List Group
I_MaintenanceTaskListGroup is a Basic CDS View that provides data about "Maintenance Task List Group" in SAP S/4HANA. It reads from 1 data source (I_BillOfOperationsGroup) and exposes 3 fields with key fields BillOfOperationsType, BillOfOperationsGroup. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BillOfOperationsGroup | I_BillOfOperationsGroup | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_MaintenanceTaskListType | _BillOfOperationsType | $projection.BillOfOperationsType = _BillOfOperationsType.TaskListType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMAINTTASKGRP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.representativeKey | BillOfOperationsGroup | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Maintenance Task List Group | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BillOfOperationsType | BillOfOperationsType | ||
| KEY | BillOfOperationsGroup | BillOfOperationsGroup | ||
| _BillOfOperationsType | _BillOfOperationsType |
@AbapCatalog.sqlViewName: 'IMAINTTASKGRP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET]
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #M, dataClass: #MASTER }
@ObjectModel.representativeKey: 'BillOfOperationsGroup'
@VDM.viewType: #BASIC
@EndUserText.label: 'Maintenance Task List Group'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
define view I_MaintenanceTaskListGroup
// as select distinct from plk
as select from I_BillOfOperationsGroup
association [1..1] to I_MaintenanceTaskListType as _BillOfOperationsType on $projection.BillOfOperationsType = _BillOfOperationsType.TaskListType
{
@ObjectModel.foreignKey.association: '_BillOfOperationsType'
key BillOfOperationsType,
key BillOfOperationsGroup,
// Associations
_BillOfOperationsType
}
where BillOfOperationsType = 'A'
or BillOfOperationsType = 'E'
or BillOfOperationsType = 'T'
;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BILLOFOPERATIONSGROUP"
],
"ASSOCIATED":
[
"I_MAINTENANCETASKLISTTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"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