I_InsurClmFNOLPaytAppTP

DDL: I_INSURCLMFNOLPAYTAPPTP Type: view_entity TRANSACTIONAL Package: ICL_VDM_FIRSTNOTICEOFLOSS_RAP

Payment section in FNOL - TP

I_InsurClmFNOLPaytAppTP is a Transactional CDS View that provides data about "Payment section in FNOL - TP" in SAP S/4HANA. It reads from 1 data source (I_InsurClmPaymentApp) and exposes 25 fields with key fields InsuranceClaim, InsurClaimUUID, InsurClmType, InsurBnftType, InsurClmSubclm. It has 4 associations to related views. Part of development package ICL_VDM_FIRSTNOTICEOFLOSS_RAP.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmPaymentApp I_InsurClmPaymentApp from

Associations (4)

CardinalityTargetAliasCondition
[0..*] I_InsurClmPaymentItem _PayItem $projection.InsuranceClaim = _PayItem.InsuranceClaim
[0..*] I_InsurClmFNOLPaytConfig _PayFNOL $projection.InsurClmType = _PayFNOL.InsurClmType
[1] I_InsurClmBenefitType _BenefitType $projection.InsurBnftType = _BenefitType.InsurBnftType
[0..*] I_CAPaymentMethodText _PayText $projection.Country = _PayText.Country and $projection.InsurClmPaytMethod = _PayText.CAPaymentMethod

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Payment section in FNOL - TP view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClaimUUID
KEY InsurClmType InsurClmType Claim Type
KEY InsurBnftType _PayFNOL InsurBnftType Benefit Type
KEY InsurClmSubclm InsurClmSubclm Subclaim
KEY InsurClmPayt InsurClmPayt Payment Number
InsurClmIncdntType _PayFNOL InsurClmIncdntType Incident Type
InsurClmPolicyProduct _PayFNOL InsurClmPolicyProduct Policy Product
InsurClmSubclmType _PayFNOL InsurClmSubclmType
InsurBnftTypeForEdit _PayFNOL InsurBnftType Benefit Type
InsurClmPaymentCurrency InsurClmPaymentCurrency Currency
InsurClmPaytTotalAmount InsurClmPaytTotalAmount Payment Amount
InsurClmPaytMethod InsurClmPaytMethod Payment Method
InsurClmPaytIsFinalPayment InsurClmPaytIsFinalPayment
InsurClmBankID InsurClmBankID Bank Details
InsurClmPaytAddrNmbrForChecks InsurClmPaytAddrNmbrForChecks Address
InsuranceClaimPayee InsuranceClaimPayee Participant
Country Country Venue: Ctry/Reg
CAPaymentMethodName
InsurClmAuthznGrp InsurClmAuthznGrp AuthGroup (VIP)
BankDetailsOfBPAreRequired
AddressDetailsAreRequired
_ClaimHead _ClaimHead
_BenefitType _BenefitType
_PayFNOL _PayFNOL

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_InsurClmFNOLPaytAppTP.
-- 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.

CREATE VIEW I_InsurClmFNOLPaytAppTP AS
SELECT
  InsuranceClaim,
  cast ( hextobin('00000000000000000000000000000000') as sysuuid_x16 preserving type ) AS InsurClaimUUID,
  InsurClmType,
  _PayFNOL.InsurBnftType AS InsurBnftType,
  InsurClmSubclm,
  InsurClmPayt,
  _PayFNOL.InsurClmIncdntType AS InsurClmIncdntType,
  _PayFNOL.InsurClmPolicyProduct AS InsurClmPolicyProduct,
  _PayFNOL.InsurClmSubclmType AS InsurClmSubclmType,
  _PayFNOL.InsurBnftType AS InsurBnftTypeForEdit,
  InsurClmPaymentCurrency,
  InsurClmPaytTotalAmount,
  InsurClmPaytMethod,
  InsurClmPaytIsFinalPayment,
  InsurClmBankID,
  InsurClmPaytAddrNmbrForChecks,
  InsuranceClaimPayee,
  Country,
  _PayText[Language = $session.system_language ].CAPaymentMethodName AS CAPaymentMethodName,
  InsurClmAuthznGrp,
  cast('' as xbkkt preserving type ) AS BankDetailsOfBPAreRequired,
  cast('' as xstra preserving type ) AS AddressDetailsAreRequired
FROM I_InsurClmPaymentApp
LEFT OUTER JOIN I_InsurClmPaymentItem AS _PayItem ON InsuranceClaim = _PayItem.InsuranceClaim  -- association [0..*]
LEFT OUTER JOIN I_InsurClmFNOLPaytConfig AS _PayFNOL ON InsurClmType = _PayFNOL.InsurClmType  -- association [0..*]
LEFT OUTER JOIN I_InsurClmBenefitType AS _BenefitType ON InsurBnftType = _BenefitType.InsurBnftType  -- association [1]
LEFT OUTER JOIN I_CAPaymentMethodText AS _PayText ON Country = _PayText.Country AND InsurClmPaytMethod = _PayText.CAPaymentMethod  -- association [0..*]
;