I_EHSTaskDueDate

DDL: I_EHSTASKDUEDATE SQL: IEHSTASKDUEDATE Type: view COMPOSITE

EHS Task Due Date

I_EHSTaskDueDate is a Composite CDS View that provides data about "EHS Task Due Date" in SAP S/4HANA. It reads from 2 data sources (I_EHSTaskInstance, I_WorkflowTask) and exposes 1 field with key field WorkflowTaskInternalID.

Data Sources (2)

SourceAliasJoin Type
I_EHSTaskInstance _TaskInstance from
I_WorkflowTask _WorkflowTask inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IEHSTASKDUEDATE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label EHS Task Due Date view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskInternalID I_WorkflowTask WorkflowTaskInternalID Work Item ID

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_EHSTaskDueDate.
-- 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: IEHSTASKDUEDATE

CREATE VIEW I_EHSTaskDueDate AS
SELECT
  _WorkflowTask.WorkflowTaskInternalID AS WorkflowTaskInternalID
FROM I_EHSTaskInstance AS _TaskInstance
INNER JOIN I_WorkflowTask AS _WorkflowTask ON /* join condition not captured in parsed metadata */
;