C_InsurClaimTaskInquiry

DDL: C_INSURCLAIMTASKINQUIRY SQL: CICLCLMTASKINQ Type: view CONSUMPTION

Offene Aufgaben bei Fall

C_InsurClaimTaskInquiry is a Consumption CDS View that provides data about "Offene Aufgaben bei Fall" in SAP S/4HANA. It reads from 1 data source (I_InsurClmPendingTasks) and exposes 11 fields with key fields InsuranceClaim, InsurClmSubclm, InsurClmActivitySequenceNumber. It has 1 association to related views. It is exposed through 1 OData service (ICL_CLAIMINQUIRY_R).

Data Sources (1)

SourceAliasJoin Type
I_InsurClmPendingTasks I_InsurClmPendingTasks from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_InsurClmSubclaimInquiry _InsurClmSubClaimData $projection.InsuranceClaim = _InsurClmSubClaimData.InsuranceClaim and $projection.InsurClmSubclm = _InsurClmSubClaimData.InsurClmSubclm

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CICLCLMTASKINQ view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Offene Aufgaben bei Fall view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view
UI.headerInfo.typeName Offene Aufgabe view
UI.headerInfo.typeNamePlural Liste der offenen Aufgaben view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #D view

OData Services (1)

ServiceBindingVersionContractRelease
ICL_CLAIMINQUIRY_R ICL_UI_CLAIMINQUIRY_R_O2 V2 C1 NOT_RELEASED

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmSubclm InsurClmSubclm Subclaim
KEY InsurClmActivitySequenceNumber InsurClmActivitySequenceNumber
InsurClmTaskName InsurClmTaskName Aufgabenbeschreibung
InsurClmTaskPending Fällig
CreationDate CreationDate Angelegt am
InsurClmDueDate InsurClmDueDate Fälligkeitsdatum
InsurClmTaskDueCriticalityCat InsurClmTaskDueCriticalityCat
UserDescription UserDescription Zugeordnet zu
InsurClmProposedHandler InsurClmProposedHandler
_InsurClmSubClaimData _InsurClmSubClaimData

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_InsurClaimTaskInquiry.
-- 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: CICLCLMTASKINQ

CREATE VIEW C_InsurClaimTaskInquiry AS
SELECT
  InsuranceClaim,
  InsurClmSubclm,
  InsurClmActivitySequenceNumber,
  InsurClmTaskName,
  '' AS InsurClmTaskPending,
  CreationDate,
  InsurClmDueDate,
  InsurClmTaskDueCriticalityCat,
  UserDescription,
  InsurClmProposedHandler
FROM I_InsurClmPendingTasks
LEFT OUTER JOIN I_InsurClmSubclaimInquiry AS _InsurClmSubClaimData ON InsuranceClaim = _InsurClmSubClaimData.InsuranceClaim AND InsurClmSubclm = _InsurClmSubClaimData.InsurClmSubclm  -- association [1..1]
;