I_InsurClmIncdntType

DDL: I_INSURCLMINCDNTTYPE SQL: ICLINCTYP Type: view BASIC Package: ICL_VDM_COMMON

Schaden-/Leistungsfall - Ereignisart

I_InsurClmIncdntType is a Basic CDS View that provides data about "Schaden-/Leistungsfall - Ereignisart" in SAP S/4HANA. It reads from 1 data source (ticl062) and exposes 6 fields with key fields InsurClmPolicyProduct, InsurClmPolicyProdGeneration, InsurClmPolicyProductVersion, InsurClmIncdntType. It has 1 association to related views. Part of development package ICL_VDM_COMMON.

Data Sources (1)

SourceAliasJoin Type
ticl062 ticl062 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_InsurClmIncdntTypeText _IncidentTypeText $projection.InsurClmIncdntType = _IncidentTypeText.InsurClmIncdntType

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICLINCTYP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Schaden-/Leistungsfall - Ereignisart view
Metadata.allowExtensions true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey InsurClmIncdntType view
ObjectModel.resultSet.sizeCategory #XS view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY InsurClmPolicyProduct polprod Stand. Product
KEY InsurClmPolicyProdGeneration generat Generation
KEY InsurClmPolicyProductVersion version XML Vers.
KEY InsurClmIncdntType losstype Scope of Loss
InsurClmType cltype Claim Type
_IncidentTypeText _IncidentTypeText

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_InsurClmIncdntType.
-- 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: ICLINCTYP

CREATE VIEW I_InsurClmIncdntType AS
SELECT
  polprod AS InsurClmPolicyProduct,
  generat AS InsurClmPolicyProdGeneration,
  version AS InsurClmPolicyProductVersion,
  losstype AS InsurClmIncdntType,
  cltype AS InsurClmType
FROM ticl062
LEFT OUTER JOIN I_InsurClmIncdntTypeText AS _IncidentTypeText ON InsurClmIncdntType = _IncidentTypeText.InsurClmIncdntType  -- association [0..*]
;