A_MaintenanceTaskList

DDL: A_MAINTENANCETASKLIST Type: view_entity CONSUMPTION

Maintenance Tasklist

A_MaintenanceTaskList is a Consumption CDS View that provides data about "Maintenance Tasklist" in SAP S/4HANA. It reads from 1 data source (R_MaintenanceTaskListTP) and exposes 14 fields with key fields TaskListType, TaskListGroup, TaskListGroupCounter.

Data Sources (1)

SourceAliasJoin Type
R_MaintenanceTaskListTP R_MaintenanceTaskListTP projection

Annotations (8)

NameValueLevelField
EndUserText.label Maintenance Tasklist view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY TaskListType TaskListType Task List Type
KEY TaskListGroup TaskListGroup Group
KEY TaskListGroupCounter TaskListGroupCounter Group Counter
BillOfOperationsVersionType BillOfOperationsVersionType
BillOfOperationsSubtype BillOfOperationsSubtype
LastUsageDate LastUsageDate
NumberOfUsages NumberOfUsages
HasChangeNumber HasChangeNumber
HasParameterEffectivity HasParameterEffectivity
LastChangeDate LastChangeDate Time Stamp
LastChangeTime LastChangeTime Time changed
LastChangedByUser LastChangedByUser User Name
RoutingIsReworkRouting RoutingIsReworkRouting
ProdnProcgIsFlexible ProdnProcgIsFlexible

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 A_MaintenanceTaskList.
-- 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.

CREATE VIEW A_MaintenanceTaskList AS
SELECT
  TaskListType,
  TaskListGroup,
  TaskListGroupCounter,
  BillOfOperationsVersionType,
  BillOfOperationsSubtype,
  LastUsageDate,
  NumberOfUsages,
  HasChangeNumber,
  HasParameterEffectivity,
  LastChangeDate,
  LastChangeTime,
  LastChangedByUser,
  RoutingIsReworkRouting,
  ProdnProcgIsFlexible
FROM R_MaintenanceTaskListTP
;