C_MaintenanceTaskListValueHelp

DDL: C_MAINTENANCETASKLISTVALUEHELP Type: view_entity CONSUMPTION

Maintenance Task List Selection

C_MaintenanceTaskListValueHelp is a Consumption CDS View that provides data about "Maintenance Task List Selection" in SAP S/4HANA. It reads from 1 data source (I_MaintenanceTaskList) and exposes 5 fields with key fields TaskListType, TaskListGroup, TaskListGroupCounter.

Data Sources (1)

SourceAliasJoin Type
I_MaintenanceTaskList I_MaintenanceTaskList from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Maintenance Task List Selection view
Metadata.ignorePropagatedAnnotations false view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey TaskListType view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TaskListType TaskListType Task List Type
KEY TaskListGroup TaskListGroup Group
KEY TaskListGroupCounter TaskListGroupCounter Group Counter
TaskListDesc TaskListDesc
ValidityStartDate ValidityStartDate Validity Start Date

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_MaintenanceTaskListValueHelp.
-- 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 C_MaintenanceTaskListValueHelp AS
SELECT
  TaskListType,
  TaskListGroup,
  TaskListGroupCounter,
  TaskListDesc,
  ValidityStartDate
FROM I_MaintenanceTaskList
;