I_InsurClmBundleTasks

DDL: I_INSURCLMBUNDLETASKS SQL: IICLEACTIVITY Type: view BASIC

Aufgaben im Fallbündel

I_InsurClmBundleTasks is a Basic CDS View that provides data about "Aufgaben im Fallbündel" in SAP S/4HANA. It reads from 1 data source (icleactivity) and exposes 40 fields with key fields InsurClmActive, InsurClaimBundle, InsurClmBndlActySqncNmbr.

Data Sources (1)

SourceAliasJoin Type
icleactivity icleactivity from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IICLEACTIVITY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
EndUserText.label Aufgaben im Fallbündel view

Fields (40)

KeyFieldSource TableSource FieldDescription
KEY InsurClmActive active Usage Active
KEY InsurClaimBundle ccevent Claim Bundle
KEY InsurClmBndlActySqncNmbr actnumber No.
ChangedOnDateTime Created
LastChangedByUser changedby User Name
InsurClmDatabaseLineStatus deleted Truth Value
CreationDateTime Time
CreatedByUser createdby User Name
InsuranceClaimBundleActivity activity VAT Activity
InsurClmTaskManualFlag xmanual Manually
InsurClmTaskName text User Group
InsurClmDueDateTime Due Time
InsurClmTaskCompleted xdone Completed
InsurClmActivityStatus act_status Task Status
InsurClmBndlTskNavgnTgt navigate Navigatn Target
InsurClmSubobjectCategory subobjcat Subobject Cat.
InsurClmActySubobj subobject Triggering obj.
InsurClmActyAssgmtSts act_assign_state Assgmt Status
InsurClmActyHdlrType act_handlertype Clm Hdlr Cat.
InsurClmActyHdlr act_handler Clm Hdlr for Task
InsurClmActyHdlrTypeGrp act_hndlrtp_grp Clm Hdlr Cat.
InsurClmActyHdlrGrp act_handler_grp CH Gp Task
InsurClmActyActyUsdProcTsk subactivityused Activity Used
InsurClmActyResubmsnDteTme Resubmission
InsurClmSubActivityUsedName subactivityn Activity
InsurClmActyTaskType act_grp_cat Task Type
InsurClmActyExprOrign expression_orig Expressn Resp.
InsurClmActy1stSubmsnDuDteTme 1st Submssn
InsurClmActyLtstStrtDteTme Latest Start
InsurClmActyLtstEndDteTme Latest End
InsurClmProposeHandlerCategory man_otype Clm Hdlr Cat.
InsurClmProposedHandler man_actorid Claim Handler
InsurClmActyWrkflwPrio priority_wf Priority
InsurClmActyAuthznGrp authgrp Authorization Group
InsurClmActyIsSystActy xsystem_activity System Activity
InsurClmWorkflowStatus wf_status Workflow Status
InsurClmBndlIsWrkflwRlvt not_wf_relevant WF-Relevant
InsurClmActyIdOfWrkItm wi_id WorkItem ID
InsurClmActyIsMnlTsk manual_task_only Only Manl Task
_InsurClmBundle _InsurClmBundle

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_InsurClmBundleTasks.
-- 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: IICLEACTIVITY

CREATE VIEW I_InsurClmBundleTasks AS
SELECT
  active AS InsurClmActive,
  ccevent AS InsurClaimBundle,
  actnumber AS InsurClmBndlActySqncNmbr,
  cast( changetime as icl_achangetime_fiori preserving type ) AS ChangedOnDateTime,
  changedby AS LastChangedByUser,
  deleted AS InsurClmDatabaseLineStatus,
  cast( createtime as icl_createutc_fiori preserving type ) AS CreationDateTime,
  createdby AS CreatedByUser,
  activity AS InsuranceClaimBundleActivity,
  xmanual AS InsurClmTaskManualFlag,
  text AS InsurClmTaskName,
  cast( duetime as icl_achangetime_fiori preserving type ) AS InsurClmDueDateTime,
  xdone AS InsurClmTaskCompleted,
  act_status AS InsurClmActivityStatus,
  navigate AS InsurClmBndlTskNavgnTgt,
  subobjcat AS InsurClmSubobjectCategory,
  subobject AS InsurClmActySubobj,
  act_assign_state AS InsurClmActyAssgmtSts,
  act_handlertype AS InsurClmActyHdlrType,
  act_handler AS InsurClmActyHdlr,
  act_hndlrtp_grp AS InsurClmActyHdlrTypeGrp,
  act_handler_grp AS InsurClmActyHdlrGrp,
  subactivityused AS InsurClmActyActyUsdProcTsk,
  cast( resubm_time as icl_achangetime_fiori preserving type ) AS InsurClmActyResubmsnDteTme,
  subactivityn AS InsurClmSubActivityUsedName,
  act_grp_cat AS InsurClmActyTaskType,
  expression_orig AS InsurClmActyExprOrign,
  cast( duedate_time1 as icl_achangetime_fiori preserving type ) AS InsurClmActy1stSubmsnDuDteTme,
  cast( duedate_time2 as icl_achangetime_fiori preserving type ) AS InsurClmActyLtstStrtDteTme,
  cast( duedate_time3 as icl_achangetime_fiori preserving type ) AS InsurClmActyLtstEndDteTme,
  man_otype AS InsurClmProposeHandlerCategory,
  man_actorid AS InsurClmProposedHandler,
  priority_wf AS InsurClmActyWrkflwPrio,
  authgrp AS InsurClmActyAuthznGrp,
  xsystem_activity AS InsurClmActyIsSystActy,
  wf_status AS InsurClmWorkflowStatus,
  not_wf_relevant AS InsurClmBndlIsWrkflwRlvt,
  wi_id AS InsurClmActyIdOfWrkItm,
  manual_task_only AS InsurClmActyIsMnlTsk
FROM icleactivity
;