R_InsurClmBenefitSplitItemTP
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)
| Source | Alias | Join Type |
|---|---|---|
| I_InsurClmBenefitSplitItem | ClmBenefitSplitItem | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | E_InsurClmBenefitSplitItem | _Extension | $projection.InsuranceClaim = _Extension.InsuranceClaim and $projection.InsurClmBnftSpltItmUUID = _Extension.InsurClmBnftSpltItmUUID |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA