I_MaintenanceTaskListGroup

DDL: I_MAINTENANCETASKLISTGROUP Type: view_entity BASIC Package: ODATA_EAM_TASKLIST_MAN

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. Part of development package ODATA_EAM_TASKLIST_MAN.

Data Sources (1)

SourceAliasJoin Type
I_BillOfOperationsGroup I_BillOfOperationsGroup from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_MaintenanceTaskListType _BillOfOperationsType $projection.BillOfOperationsType = _BillOfOperationsType.TaskListType

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey BillOfOperationsGroup view
Analytics.technicalName IMAINTTASKGRP view
VDM.viewType #BASIC view
EndUserText.label Maintenance Task List Group view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsType BillOfOperationsType
KEY BillOfOperationsGroup BillOfOperationsGroup
_BillOfOperationsType _BillOfOperationsType
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET]
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #M, dataClass: #MASTER }
@ObjectModel.representativeKey: 'BillOfOperationsGroup'
@Analytics.technicalName: 'IMAINTTASKGRP'
@VDM.viewType: #BASIC 
@EndUserText.label: 'Maintenance Task List Group'

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
define view entity 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'
;