I_InsurClmBnftSplitItemBasic

DDL: I_INSURCLMBNFTSPLITITEMBASIC Type: view_entity BASIC

Grundsicht für Verteilungsposition

I_InsurClmBnftSplitItemBasic is a Basic CDS View that provides data about "Grundsicht für Verteilungsposition" in SAP S/4HANA. It reads from 1 data source (icl_bensplit_itm) and exposes 29 fields with key fields InsurClmActive, InsuranceClaim, InsurClmBnftSpltItmUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
icl_bensplit_itm icl_bensplit_itm from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Currency _Currency $projection.InsurClmBnftSplitCurrency = _Currency.Currency

Annotations (9)

NameValueLevelField
EndUserText.label Grundsicht für Verteilungsposition view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.representativeKey InsurClmBnftSpltItmUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
Analytics.technicalName ICBnftSplitItemBasic view

Fields (29)

KeyFieldSource TableSource FieldDescription
KEY InsurClmActive active Usage Active
KEY InsuranceClaim claim Policy Snapshot
KEY InsurClmBnftSpltItmUUID bensplit_itm_id Object GUID
ChangedOnDateTime Created
LastChangedByUser changedby User Name
InsurClmDatabaseLineStatus deleted Truth Value
InsurClmBnftSplitItemNumber bensplit_itm_num Item
InsurClmBnftSpltItmHdrUUID bensplit_hdr_id Object GUID
InsurClmPrioOfBnftSpltValue prio Profile priority
InsurClmCalcBaseShrPct sharepct Percent Share
InsurClmBnftSpltItmGrossAmt grossamount Gross value
InsurClmBnftSpltItmNetAmt netamount Stated Amount
InsurClmBnftSpltAmtFxdValue benamountfixed BenSplAmt Fixed
InsurClmBnftSpltItmPaidAmt amtdone Received
InsurClmBnftSpltItmCalcBaseAmt calcbase Calculatn Base
InsurClmBnftSpltOffsetKey benoffset Offset ID
InsurClmBnftSpltNetPaytDueDate duedate Promised For
InsurClmBankDetailsId bkid Bank Details
InsurClmPaytMethod method Validation Method
InsurClmPaytAddrNmbrForChecks addrnumber Address Number
InsurClmBnftSpltItmValidToID Address Number
InsurClmAltvPostgTgtVal altposttarget Alt.Posting Tgt
InsurClmPaytNote note TradeRequest Comment
InsurClmBnftSplitCurrency splitcurr Currency
InsurClmBnftSpltItmValidToDate validto Vers.Valid To
InsurClmNetAmtValidValue netamoutofdate Out of Date
InsurClmBnftSpltItmSubclaim subclaim Subclaim
InsurClmIsOffstAmtAssgdSubclm offsetsubclaim Offset Amt to Subclm
_Currency _Currency

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_InsurClmBnftSplitItemBasic.
-- 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_InsurClmBnftSplitItemBasic AS
SELECT
  active AS InsurClmActive,
  claim AS InsuranceClaim,
  bensplit_itm_id AS InsurClmBnftSpltItmUUID,
  cast( changetime as icl_achangetime_fiori preserving type ) AS ChangedOnDateTime,
  changedby AS LastChangedByUser,
  deleted AS InsurClmDatabaseLineStatus,
  bensplit_itm_num AS InsurClmBnftSplitItemNumber,
  bensplit_hdr_id AS InsurClmBnftSpltItmHdrUUID,
  prio AS InsurClmPrioOfBnftSpltValue,
  sharepct AS InsurClmCalcBaseShrPct,
  grossamount AS InsurClmBnftSpltItmGrossAmt,
  netamount AS InsurClmBnftSpltItmNetAmt,
  benamountfixed AS InsurClmBnftSpltAmtFxdValue,
  amtdone AS InsurClmBnftSpltItmPaidAmt,
  calcbase AS InsurClmBnftSpltItmCalcBaseAmt,
  benoffset AS InsurClmBnftSpltOffsetKey,
  duedate AS InsurClmBnftSpltNetPaytDueDate,
  bkid AS InsurClmBankDetailsId,
  method AS InsurClmPaytMethod,
  addrnumber AS InsurClmPaytAddrNmbrForChecks,
  cast ( addrnumber as icl_validtoid_api preserving type ) AS InsurClmBnftSpltItmValidToID,
  altposttarget AS InsurClmAltvPostgTgtVal,
  note AS InsurClmPaytNote,
  splitcurr AS InsurClmBnftSplitCurrency,
  validto AS InsurClmBnftSpltItmValidToDate,
  netamoutofdate AS InsurClmNetAmtValidValue,
  subclaim AS InsurClmBnftSpltItmSubclaim,
  offsetsubclaim AS InsurClmIsOffstAmtAssgdSubclm
FROM icl_bensplit_itm
LEFT OUTER JOIN I_Currency AS _Currency ON InsurClmBnftSplitCurrency = _Currency.Currency  -- association [1..1]
;