C_ChgRecdMaintTskListVH

DDL: C_CHGRECDMAINTTSKLISTVH SQL: CMAINTASKLISTVH Type: view CONSUMPTION

Maintenance Task List

C_ChgRecdMaintTskListVH is a Consumption CDS View that provides data about "Maintenance Task List" in SAP S/4HANA. It reads from 1 data source (I_BillOfOperations) and exposes 8 fields with key fields BillOfOperationsGroup, BillOfOperationsType, BillOfOperationsVariant.

Data Sources (1)

SourceAliasJoin Type
I_BillOfOperations _BillOfOperations from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CMAINTASKLISTVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
EndUserText.label Maintenance Task List view
ObjectModel.representativeKey BillOfOperationsGroup view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsGroup Group
KEY BillOfOperationsType BillOfOperationsType Task List Type
KEY BillOfOperationsVariant BillOfOperationsVariant Group Counter
ResponsiblePlannerGroup
Plant
BillOfOperationsDesc Description
BillOfOperationsUsage
BillOfOperationsStatus Status

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 C_ChgRecdMaintTskListVH.
-- 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: CMAINTASKLISTVH

CREATE VIEW C_ChgRecdMaintTskListVH AS
SELECT
  cast( BillOfOperationsGroup as r_plnnr preserving type) AS BillOfOperationsGroup,
  BillOfOperationsType,
  BillOfOperationsVariant,
  _BillOfOperations._BillOfOperationsChangeState[1: ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date].ResponsiblePlannerGroup AS ResponsiblePlannerGroup,
  _BillOfOperations._BillOfOperationsChangeState[1: ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date].Plant AS Plant,
  _BillOfOperations._BillOfOperationsChangeState[1: ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date].BillOfOperationsDesc AS BillOfOperationsDesc,
  _BillOfOperations._BillOfOperationsChangeState[1: ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date].BillOfOperationsUsage AS BillOfOperationsUsage,
  _BillOfOperations._BillOfOperationsChangeState[1: ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date].BillOfOperationsStatus AS BillOfOperationsStatus
FROM I_BillOfOperations AS _BillOfOperations
;