I_InsurClmTotExpndtrPlcyProd

DDL: I_INSURCLMTOTEXPNDTRPLCYPROD SQL: IICLTOTEXPPLCP Type: view BASIC

S/L-Fall mit PolProd für GesAufwAbfrage

I_InsurClmTotExpndtrPlcyProd is a Basic CDS View that provides data about "S/L-Fall mit PolProd für GesAufwAbfrage" in SAP S/4HANA. It reads from 1 data source (I_InsuranceClaim) and exposes 11 fields with key fields InsuranceClaim, InsurClmPolicyProductVersion, InsurClmPolicyProdGeneration. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_InsuranceClaim I_InsuranceClaim from

Associations (1)

CardinalityTargetAliasCondition
[1] I_InsurClaimPolicyProduct _PolProduct $projection.InsurClmPolicyProduct = _PolProduct.InsurClmPolicyProduct and $projection.InsurClmPolicyProductVersion = _PolProduct.InsurClmPolicyProductVersion and $projection.InsurClmPolicyProdGeneration = _PolProduct.InsurClmPolicyProdGeneration

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IICLTOTEXPPLCP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label S/L-Fall mit PolProd für GesAufwAbfrage view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmPolicyProductVersion InsurClmPolicyProductVersion Version
KEY InsurClmPolicyProdGeneration InsurClmPolicyProdGeneration Generation
InsuranceContract InsuranceContract Contract
InsurClmType InsurClmType Claim Type
InsurClmLifeCycSts InsurClmLifeCycSts Status
InsurClmPolicyProduct InsurClmPolicyProduct Policy Product
InsurClmAuthznGrp InsurClmAuthznGrp AuthGroup (VIP)
InsurClmTypeGeneration InsurClmTypeGeneration Generation
InsurClmAssignUUID InsurClmAssignUUID Link UUID
InsurLineOfBus

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_InsurClmTotExpndtrPlcyProd.
-- 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: IICLTOTEXPPLCP

CREATE VIEW I_InsurClmTotExpndtrPlcyProd AS
SELECT
  InsuranceClaim,
  InsurClmPolicyProductVersion,
  InsurClmPolicyProdGeneration,
  InsuranceContract,
  InsurClmType,
  InsurClmLifeCycSts,
  InsurClmPolicyProduct,
  InsurClmAuthznGrp,
  InsurClmTypeGeneration,
  InsurClmAssignUUID,
  cast(coalesce(_PolProduct.InsurLineOfBus,pol.plineofbus) as icl_lineofbus preserving type) AS InsurLineOfBus
FROM I_InsuranceClaim
LEFT OUTER JOIN I_InsurClaimPolicyProduct AS _PolProduct ON InsurClmPolicyProduct = _PolProduct.InsurClmPolicyProduct AND InsurClmPolicyProductVersion = _PolProduct.InsurClmPolicyProductVersion AND InsurClmPolicyProdGeneration = _PolProduct.InsurClmPolicyProdGeneration  -- association [1]
;