R_HCMOvertimeRequestWorkItemTP

DDL: R_HCMOVERTIMEREQUESTWORKITEMTP Type: view_entity TRANSACTIONAL

Overtime Request Approval Workitem - TP

R_HCMOvertimeRequestWorkItemTP is a Transactional CDS View that provides data about "Overtime Request Approval Workitem - TP" in SAP S/4HANA. It reads from 1 data source (I_WorkflowTask) and exposes 9 fields with key field WorkflowTaskInternalID.

Data Sources (1)

SourceAliasJoin Type
I_WorkflowTask WorkItem from

Annotations (8)

NameValueLevelField
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Overtime Request Approval Workitem - TP view
Metadata.ignorePropagatedAnnotations false view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskInternalID I_WorkflowTask WorkflowTaskInternalID Work Item ID
HCMWorkItemID I_WorkflowTask TopLevelWorkflowTask Top Level Workflow
HCMTimeRequestID Header HCMTimeRequestID
WorkflowTaskStatus I_WorkflowTask WorkflowTaskStatus Status
WorkflowTaskCurrentUser I_WorkflowTask WorkflowTaskCurrentUser Agent
_TaskRecipient I_WorkflowTask _TaskRecipient
_Request _Request
_Item _Item
_Note _Note

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 R_HCMOvertimeRequestWorkItemTP.
-- 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 R_HCMOvertimeRequestWorkItemTP AS
SELECT
  WorkItem.WorkflowTaskInternalID AS WorkflowTaskInternalID,
  WorkItem.TopLevelWorkflowTask AS HCMWorkItemID,
  Header.HCMTimeRequestID AS HCMTimeRequestID,
  WorkItem.WorkflowTaskStatus AS WorkflowTaskStatus,
  WorkItem.WorkflowTaskCurrentUser AS WorkflowTaskCurrentUser,
  WorkItem._TaskRecipient AS _TaskRecipient
FROM I_WorkflowTask AS WorkItem
;