C_ObjPgMaintTaskListOpCount

DDL: C_OBJPGMAINTTASKLISTOPCOUNT Type: view_entity CONSUMPTION Package: ODATA_EAM_TASKLIST_MAN

Counter for Maint Task List Operation

C_ObjPgMaintTaskListOpCount is a Consumption CDS View that provides data about "Counter for Maint Task List Operation" in SAP S/4HANA. It reads from 1 data source (I_MaintTaskListOperation) and exposes 5 fields with key fields TaskListType, TaskListGroup, TaskListGroupCounter. Part of development package ODATA_EAM_TASKLIST_MAN.

Data Sources (1)

SourceAliasJoin Type
I_MaintTaskListOperation I_MaintTaskListOperation from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Counter for Maint Task List Operation view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TaskListType TaskListType Task List Type
KEY TaskListGroup TaskListGroup Group
KEY TaskListGroupCounter TaskListGroupCounter Group Counter
NumberOfOperations Operations
_MaintenanceTaskList _MaintenanceTaskList

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_ObjPgMaintTaskListOpCount.
-- 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_ObjPgMaintTaskListOpCount AS
SELECT
  TaskListType,
  TaskListGroup,
  TaskListGroupCounter,
  count( distinct MaintenanceTaskListOperation ) AS NumberOfOperations
FROM I_MaintTaskListOperation
;