I_InsurClmFactCaptureTxtAnswer

DDL: I_INSURCLMFACTCAPTURETXTANSWER SQL: ICLMFACTCTXTANS Type: view BASIC

Sachverhalt des Schaden-/Leistungsfalls

I_InsurClmFactCaptureTxtAnswer is a Basic CDS View that provides data about "Sachverhalt des Schaden-/Leistungsfalls" in SAP S/4HANA. It reads from 1 data source (icllossdet) and exposes 9 fields with key fields InsuranceClaim, InsurClmFactCaptureCategory, InsurClmSubobject, InsurClmFactCaptureQstn, InsurClmFactCaptureAnswer.

Data Sources (1)

SourceAliasJoin Type
icllossdet icllossdet from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICLMFACTCTXTANS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Sachverhalt des Schaden-/Leistungsfalls view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.representativeKey InsurClmFactCaptureAnswer view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim claim Policy Snapshot
KEY InsurClmFactCaptureCategory factscat FactsCapt.Cat.
KEY InsurClmSubobject subobject Triggering obj.
KEY InsurClmFactCaptureQstn question Question
KEY InsurClmFactCaptureAnswer answer Answer
InsurClmFactCaptureTextAnswer text User Group
InsurClmChangeDateTime Created
InsuranceClaimChangedByUser changedby User Name
InsurClmDatabaseLineStatus deleted Truth Value

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_InsurClmFactCaptureTxtAnswer.
-- 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: ICLMFACTCTXTANS

CREATE VIEW I_InsurClmFactCaptureTxtAnswer AS
SELECT
  claim AS InsuranceClaim,
  factscat AS InsurClmFactCaptureCategory,
  subobject AS InsurClmSubobject,
  question AS InsurClmFactCaptureQstn,
  answer AS InsurClmFactCaptureAnswer,
  text AS InsurClmFactCaptureTextAnswer,
  cast( changetime as icl_achangetime_fiori preserving type ) AS InsurClmChangeDateTime,
  changedby AS InsuranceClaimChangedByUser,
  deleted AS InsurClmDatabaseLineStatus
FROM icllossdet
;