I_InsurClmFactCaptureInquiry

DDL: I_INSURCLMFACTCAPTUREINQUIRY SQL: IICLFACTCAPIN Type: view COMPOSITE Package: ICL_VDM_CLAIMINQUIRY

Sachverhalt

I_InsurClmFactCaptureInquiry is a Composite CDS View that provides data about "Sachverhalt" in SAP S/4HANA. It reads from 1 data source (I_InsurClmFactCapture) and exposes 12 fields with key fields InsuranceClaim, InsurClmFactCaptureCategory, InsurClmSubobject, InsurClmFactCaptureQstn, InsurClmFactCaptureAnswer. Part of development package ICL_VDM_CLAIMINQUIRY.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmFactCapture I_InsurClmFactCapture from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IICLFACTCAPIN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
EndUserText.label Sachverhalt view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmFactCaptureCategory InsurClmFactCaptureCategory FactsCapt.Cat.
KEY InsurClmSubobject InsurClmSubobject Claim Subobject
KEY InsurClmFactCaptureQstn InsurClmFactCaptureQstn Question
KEY InsurClmFactCaptureAnswer InsurClmFactCaptureAnswer Answer
InsurClmFactCaptureQstnSqnc InsurClmFactCaptureQstnSqnc Question Seq.
InsurClmFactCaptureSqncVersion InsurClmFactCaptureSqncVersion XML Vers.
InsurClmFactCaptureSqncVariant InsurClmFactCaptureSqncVariant Variant
InsurClmFactCaptureQstnLongTxt
_FactCaptureAnswer _FactCaptureAnswer
_FactCaptureQstn _FactCaptureQstn
_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_InsurClmFactCaptureInquiry.
-- 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: IICLFACTCAPIN

CREATE VIEW I_InsurClmFactCaptureInquiry AS
SELECT
  InsuranceClaim,
  InsurClmFactCaptureCategory,
  InsurClmSubobject,
  InsurClmFactCaptureQstn,
  InsurClmFactCaptureAnswer,
  InsurClmFactCaptureQstnSqnc,
  InsurClmFactCaptureSqncVersion,
  InsurClmFactCaptureSqncVariant,
  _FactCaptureQstn._FactCaptureQstnText[ Language = $session.system_language ].InsurClmFactCaptureQstnLongTxt AS InsurClmFactCaptureQstnLongTxt
FROM I_InsurClmFactCapture
;