I_MaintenanceTaskListGroup

DDL: I_MAINTENANCETASKLISTGROUP SQL: IMAINTTASKGRP Type: view BASIC

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)

SourceAliasJoin Type
I_BillOfOperationsGroup I_BillOfOperationsGroup from

Associations (1)

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

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/