I_InsurClmLitigationItem

DDL: I_INSURCLMLITIGATIONITEM SQL: IICLLITITEM Type: view BASIC Package: ICL_VDM_COMMON

Verfahrensinstanz

I_InsurClmLitigationItem is a Basic CDS View that provides data about "Verfahrensinstanz" in SAP S/4HANA. It reads from 1 data source (icllititem) and exposes 27 fields with key fields InsurClmActive, InsuranceClaim, InsurClmLitigationItmUUID. It has 1 association to related views. Part of development package ICL_VDM_COMMON.

Data Sources (1)

SourceAliasJoin Type
icllititem icllititem from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_InsuranceClaim _InsuranceClaim $projection.InsuranceClaim = _InsuranceClaim.InsuranceClaim

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IICLLITITEM view
EndUserText.label Verfahrensinstanz view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY InsurClmActive active Usage Active
KEY InsuranceClaim claim Policy Snapshot
KEY InsurClmLitigationItmUUID lititemguid UUID LitigLevel
ChangedOnDateTime Created
LastChangedByUser changedby User Name
InsurClmDatabaseLineStatus deleted Truth Value
InsurClmSubobject subobject Triggering obj.
InsurClmLtgtnUUID lithguid UUID Litigation
InsurClmLitigationItemNumber lititem_num Number
InsurClmSuitFiledDate datesuitfiled Suit Filed
InsurClmLtgtnItmSrvcDte servicedate Service Date
InsurClmLtgtnItmAnsDueDate answerduedate Answer Due Date
InsurClmLtgtnItmCaseNumber casenumber Case Number
InsurClmLtgtnItmExtRef extref Rev. Ext. Ref.
InsurClmLtgtnItmAppeal appeal Appeal
InsurClmLtgtnItmCntry country Venue: Ctry/Reg
InsurClmLtgtnItmRgn region Venue Region
InsurClmLtgtnItmCounty county Wyoming County
InsurClmLtgtnItmMunicipality municipality Venue Municplty
InsurClmLtgtnItmJurisdiction jurisdiction Jurisdiction
InsurClmLtgtnItemCourtLevel courtlevel LitigationLevel
InsurClmLtgtnItmTrialDte trialdate Trial Date
InsurClmLtgtnItemDefenseType defensetype Defense Type
InsurClmLtgtnItmIsCancelled cancelled Item Discarded
InsurClmLtgtnItmIsAccptd accepted Incoming Doc Accept.
InsurClmLtgtnItmIsRjctd rejected Rejected
_InsuranceClaim _InsuranceClaim

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_InsurClmLitigationItem.
-- 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: IICLLITITEM

CREATE VIEW I_InsurClmLitigationItem AS
SELECT
  active AS InsurClmActive,
  claim AS InsuranceClaim,
  lititemguid AS InsurClmLitigationItmUUID,
  cast( changetime as icl_achangetime_fiori preserving type ) AS ChangedOnDateTime,
  changedby AS LastChangedByUser,
  deleted AS InsurClmDatabaseLineStatus,
  subobject AS InsurClmSubobject,
  lithguid AS InsurClmLtgtnUUID,
  lititem_num AS InsurClmLitigationItemNumber,
  datesuitfiled AS InsurClmSuitFiledDate,
  servicedate AS InsurClmLtgtnItmSrvcDte,
  answerduedate AS InsurClmLtgtnItmAnsDueDate,
  casenumber AS InsurClmLtgtnItmCaseNumber,
  extref AS InsurClmLtgtnItmExtRef,
  appeal AS InsurClmLtgtnItmAppeal,
  country AS InsurClmLtgtnItmCntry,
  region AS InsurClmLtgtnItmRgn,
  county AS InsurClmLtgtnItmCounty,
  municipality AS InsurClmLtgtnItmMunicipality,
  jurisdiction AS InsurClmLtgtnItmJurisdiction,
  courtlevel AS InsurClmLtgtnItemCourtLevel,
  trialdate AS InsurClmLtgtnItmTrialDte,
  defensetype AS InsurClmLtgtnItemDefenseType,
  cancelled AS InsurClmLtgtnItmIsCancelled,
  accepted AS InsurClmLtgtnItmIsAccptd,
  rejected AS InsurClmLtgtnItmIsRjctd
FROM icllititem
LEFT OUTER JOIN I_InsuranceClaim AS _InsuranceClaim ON InsuranceClaim = _InsuranceClaim.InsuranceClaim  -- association [1..1]
;