I_InsurClmLossDesc

DDL: I_INSURCLMLOSSDESC SQL: ICLCLMLOSSDESC Type: view BASIC Package: ICL_VDM_COMMON

Schadenbeschreibung

I_InsurClmLossDesc is a Basic CDS View that provides data about "Schadenbeschreibung" in SAP S/4HANA. It reads from 2 data sources (icltext_repl, sgbt_nte_cont) and exposes 8 fields with key field InsuranceClaim. It has 1 association to related views. Part of development package ICL_VDM_COMMON.

Data Sources (2)

SourceAliasJoin Type
icltext_repl ClaimLossDesc from
sgbt_nte_cont ExternalNote inner

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_InsuranceClaim _Claim ClaimLossDesc.claim = _Claim.InsuranceClaim

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICLCLMLOSSDESC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Schadenbeschreibung view
VDM.viewType #BASIC view
ObjectModel.representativeKey InsuranceClaim view
ObjectModel.semanticKey InsuranceClaim view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim icltext_repl claim Policy Snapshot
NoteID sgbt_nte_cont noteid Unique ID
CreatedByUser sgbt_nte_cont creator User ID
CreationDateTime sgbt_nte_cont created UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
LastChangedByUser sgbt_nte_cont changer Last Changed By
ChangedOnDateTime sgbt_nte_cont changed Time Stamp
InsurClmDescriptionOfLoss sgbt_nte_cont content Trusted Site Content
_Claim _Claim

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_InsurClmLossDesc.
-- 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: ICLCLMLOSSDESC

CREATE VIEW I_InsurClmLossDesc AS
SELECT
  ClaimLossDesc.claim AS InsuranceClaim,
  ExternalNote.noteid AS NoteID,
  ExternalNote.creator AS CreatedByUser,
  ExternalNote.created AS CreationDateTime,
  ExternalNote.changer AS LastChangedByUser,
  ExternalNote.changed AS ChangedOnDateTime,
  ExternalNote.content AS InsurClmDescriptionOfLoss
FROM icltext_repl AS ClaimLossDesc
INNER JOIN sgbt_nte_cont AS ExternalNote ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_InsuranceClaim AS _Claim ON ClaimLossDesc.claim = _Claim.InsuranceClaim  -- association [1..1]
;