R_InsurClmBenefitSplitItemTP

DDL: R_INSURCLMBENEFITSPLITITEMTP Type: view_entity TRANSACTIONAL

Benefit split (Onetime) item - TP

R_InsurClmBenefitSplitItemTP is a Transactional CDS View that provides data about "Benefit split (Onetime) item - TP" in SAP S/4HANA. It reads from 1 data source (I_InsurClmBenefitSplitItem) and exposes 28 fields with key fields InsurClmActive, InsuranceClaim, InsurClmBnftSpltItmUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_InsurClmBenefitSplitItem ClmBenefitSplitItem from

Associations (1)

CardinalityTargetAliasCondition
[1..1] E_InsurClmBenefitSplitItem _Extension $projection.InsuranceClaim = _Extension.InsuranceClaim and $projection.InsurClmBnftSpltItmUUID = _Extension.InsurClmBnftSpltItmUUID

Annotations (8)

NameValueLevelField
EndUserText.label Benefit split (Onetime) item - TP view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey InsurClmBnftSpltItmUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view

Fields (28)

KeyFieldSource TableSource FieldDescription
KEY InsurClmActive InsurClmActive Active/Suspense
KEY InsuranceClaim InsuranceClaim Claim Number
KEY InsurClmBnftSpltItmUUID InsurClmBnftSpltItmUUID
ChangedOnDateTime ChangedOnDateTime Last Changed At
LastChangedByUser LastChangedByUser User Name
InsurClmDatabaseLineStatus InsurClmDatabaseLineStatus Status
InsurClmBnftSplitItemNumber InsurClmBnftSplitItemNumber
InsurClmBnftSpltItmHdrUUID InsurClmBnftSpltItmHdrUUID
InsurClmPrioOfBnftSpltValue InsurClmPrioOfBnftSpltValue
InsurClmCalcBaseShrPct InsurClmCalcBaseShrPct
InsurClmBnftSpltItmGrossAmt InsurClmBnftSpltItmGrossAmt
InsurClmBnftSpltItmNetAmt InsurClmBnftSpltItmNetAmt
InsurClmBnftSpltAmtFxdValue InsurClmBnftSpltAmtFxdValue
InsurClmBnftSpltItmPaidAmt InsurClmBnftSpltItmPaidAmt
InsurClmBnftSpltItmCalcBaseAmt InsurClmBnftSpltItmCalcBaseAmt
InsurClmBnftSpltOffsetKey InsurClmBnftSpltOffsetKey
InsurClmBnftSpltNetPaytDueDate InsurClmBnftSpltNetPaytDueDate
InsurClmBankDetailsId InsurClmBankDetailsId
InsurClmPaytMethod InsurClmPaytMethod Payment Method
InsurClmPaytAddrNmbrForChecks InsurClmPaytAddrNmbrForChecks Address
InsurClmAltvPostgTgtVal InsurClmAltvPostgTgtVal Alt.Posting Tgt
InsurClmPaytNote InsurClmPaytNote Purpose
InsurClmBnftSplitCurrency InsurClmBnftSplitCurrency
InsurClmBnftSpltItmValidToID
InsurClmNetAmtValidValue InsurClmNetAmtValidValue
InsurClmBnftSpltItmSubclaim InsurClmBnftSpltItmSubclaim
InsurClmIsOffstAmtAssgdSubclm InsurClmIsOffstAmtAssgdSubclm
_InsurClmBenefitSplitHeader _InsurClmBenefitSplitHeader

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 R_InsurClmBenefitSplitItemTP.
-- 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 R_InsurClmBenefitSplitItemTP AS
SELECT
  InsurClmActive,
  InsuranceClaim,
  InsurClmBnftSpltItmUUID,
  ChangedOnDateTime,
  LastChangedByUser,
  InsurClmDatabaseLineStatus,
  InsurClmBnftSplitItemNumber,
  InsurClmBnftSpltItmHdrUUID,
  InsurClmPrioOfBnftSpltValue,
  InsurClmCalcBaseShrPct,
  InsurClmBnftSpltItmGrossAmt,
  InsurClmBnftSpltItmNetAmt,
  InsurClmBnftSpltAmtFxdValue,
  InsurClmBnftSpltItmPaidAmt,
  InsurClmBnftSpltItmCalcBaseAmt,
  InsurClmBnftSpltOffsetKey,
  InsurClmBnftSpltNetPaytDueDate,
  InsurClmBankDetailsId,
  InsurClmPaytMethod,
  InsurClmPaytAddrNmbrForChecks,
  InsurClmAltvPostgTgtVal,
  InsurClmPaytNote,
  InsurClmBnftSplitCurrency,
  case when (InsurClmBnftSpltItmValidToID = '0000-00-00') then '0' else (InsurClmBnftSpltItmValidToID) end AS InsurClmBnftSpltItmValidToID,
  InsurClmNetAmtValidValue,
  InsurClmBnftSpltItmSubclaim,
  InsurClmIsOffstAmtAssgdSubclm
FROM I_InsurClmBenefitSplitItem AS ClmBenefitSplitItem
LEFT OUTER JOIN E_InsurClmBenefitSplitItem AS _Extension ON InsuranceClaim = _Extension.InsuranceClaim AND InsurClmBnftSpltItmUUID = _Extension.InsurClmBnftSpltItmUUID  -- association [1..1]
;