I_MaintenanceTaskListGroup

DDL: I_MAINTENANCETASKLISTGROUP SQL: IMAINTTASKGRP Type: view BASIC

Maintenance Task List Group

I_MaintenanceTaskListGroup (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Asset Management

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.

SAP API Hub

StateC1
Line of BusinessAsset Management
Application ComponentPM
CapabilitiesAssociation Target for Defining CDS Entities
PackageAsset Management for SAP S/4HANA Cloud Private Edition

Documentation

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 Bill of Operations Type
KEY BillOfOperationsGroup BillOfOperationsGroup Bill of Operations Group
_BillOfOperationsType _BillOfOperationsType

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_MaintenanceTaskListGroup.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IMAINTTASKGRP

CREATE VIEW I_MaintenanceTaskListGroup AS
SELECT
  BillOfOperationsType,
  BillOfOperationsGroup
FROM I_BillOfOperationsGroup
LEFT OUTER JOIN I_MaintenanceTaskListType AS _BillOfOperationsType ON BillOfOperationsType = _BillOfOperationsType.TaskListType  -- association [1..1]
;