I_MaintenanceTaskListTP_2

DDL: I_MAINTENANCETASKLISTTP_2 Type: view_entity TRANSACTIONAL Package: VDM_EAM_TASKLIST

Maintenance Tasklist

I_MaintenanceTaskListTP_2 is a Transactional 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. Part of development package VDM_EAM_TASKLIST.

Data Sources (1)

SourceAliasJoin Type
R_MaintenanceTaskListTP R_MaintenanceTaskListTP projection

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Maintenance Tasklist view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name MaintenanceTaskList view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #TRANSACTIONAL 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 I_MaintenanceTaskListTP_2.
-- 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 I_MaintenanceTaskListTP_2 AS
SELECT
  TaskListType,
  TaskListGroup,
  TaskListGroupCounter,
  BillOfOperationsVersionType,
  BillOfOperationsSubtype,
  LastUsageDate,
  NumberOfUsages,
  HasChangeNumber,
  HasParameterEffectivity,
  LastChangeDate,
  LastChangeTime,
  LastChangedByUser,
  RoutingIsReworkRouting,
  ProdnProcgIsFlexible
FROM R_MaintenanceTaskListTP
;