I_InsurClmManageTask

DDL: I_INSURCLMMANAGETASK Type: view BASIC

Schaden/Leistung-Aufgabe oder Prompting-Meldung

I_InsurClmManageTask is a Basic CDS View that provides data about "Schaden/Leistung-Aufgabe oder Prompting-Meldung" in SAP S/4HANA. It reads from 1 data source (ticl044) and exposes 5 fields with key field InsurClmActivity. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
ticl044 ticl044 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_InsurClmManageTaskText _TaskText $projection.InsurClmActivity = _TaskText.InsurClmActivity

Annotations (10)

NameValueLevelField
EndUserText.label Schaden/Leistung-Aufgabe oder Prompting-Meldung view
AbapCatalog.sqlViewName IICLMANAGETASK view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InsurClmActivity message User Message
InsurClmDoneMode donemode Done Thru Navigation
InsurClmTaskName _TaskText InsurClmTaskName
InsurClmTaskCompletionName _TaskText InsurClmTaskCompletionName
_TaskText _TaskText

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_InsurClmManageTask.
-- 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 I_InsurClmManageTask AS
SELECT
  message AS InsurClmActivity,
  donemode AS InsurClmDoneMode,
  _TaskText.InsurClmTaskName AS InsurClmTaskName,
  _TaskText.InsurClmTaskCompletionName AS InsurClmTaskCompletionName
FROM ticl044
LEFT OUTER JOIN I_InsurClmManageTaskText AS _TaskText ON InsurClmActivity = _TaskText.InsurClmActivity  -- association [0..*]
;