I_InsurClmPendingTasks

DDL: I_INSURCLMPENDINGTASKS SQL: IICLPENDTASKS Type: view COMPOSITE

Offene Aufgaben bei Fall

I_InsurClmPendingTasks is a Composite CDS View that provides data about "Offene Aufgaben bei Fall" in SAP S/4HANA. It reads from 1 data source (I_InsurClaimTaskInqry) and exposes 14 fields with key fields InsuranceClaim, InsurClmSubclm, InsurClmActivitySequenceNumber. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_InsurClaimTaskInqry I_InsurClaimTaskInqry from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_InsurClmManageTask _Task $projection.InsurClmActivity = _Task.InsurClmActivity

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IICLPENDTASKS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Offene Aufgaben bei Fall view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmSubclm InsurClmSubclm Subclaim
KEY InsurClmActivitySequenceNumber InsurClmActivitySequenceNumber
CreationDateTime CreationDateTime Timestamp
CreationDate CreationDate Time Stamp
InsurClmActivity InsurClmActivity
InsurClmTaskManualFlag InsurClmTaskManualFlag
InsurClmTaskName _Task InsurClmTaskName
InsurClmDueDate InsurClmDueDate
InsurClmTaskTimeDifference InsurClmTaskTimeDifference
InsurClmTaskCompleted InsurClmTaskCompleted
InsurClmActivityStatus InsurClmActivityStatus
InsurClmProposedHandler InsurClmProposedHandler
UserDescription UserDescription Full Name

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_InsurClmPendingTasks.
-- 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: IICLPENDTASKS

CREATE VIEW I_InsurClmPendingTasks AS
SELECT
  InsuranceClaim,
  InsurClmSubclm,
  InsurClmActivitySequenceNumber,
  CreationDateTime,
  CreationDate,
  InsurClmActivity,
  InsurClmTaskManualFlag,
  _Task.InsurClmTaskName AS InsurClmTaskName,
  InsurClmDueDate,
  InsurClmTaskTimeDifference,
  InsurClmTaskCompleted,
  InsurClmActivityStatus,
  InsurClmProposedHandler,
  UserDescription
FROM I_InsurClaimTaskInqry
LEFT OUTER JOIN I_InsurClmManageTask AS _Task ON InsurClmActivity = _Task.InsurClmActivity  -- association [0..1]
;