I_InsurClmLossExpnRcvryInqry
Finanzübersicht für Auskunft
I_InsurClmLossExpnRcvryInqry is a Composite CDS View that provides data about "Finanzübersicht für Auskunft" in SAP S/4HANA. It reads from 1 data source (I_InsurClmLossExpenseRecovery) and exposes 12 fields with key field InsuranceClaim. Part of development package ICL_VDM_CLAIMINQUIRY.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_InsurClmLossExpenseRecovery | I_InsurClmLossExpenseRecovery | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IICLLSEXPRECINQY | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Finanzübersicht für Auskunft | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InsuranceClaim | InsuranceClaim | ||
| InsurClmSalvagePaytAmt | ||||
| InsurClmSubrogtnRcvryPaytAmt | ||||
| InsurClmRecoveryPaytAmt | ||||
| InsurClmTotalRecoveryPaytAmt | ||||
| InsurClmLossPaytAmt | ||||
| InsurClmExpensePaytAmt | ||||
| InsurClmLossReserveAmt | ||||
| InsurClmExpenseReserveAmount | ||||
| InsurClmLossExpenditureAmount | ||||
| InsurClmExpnExpenditureAmount | ||||
| InsurClmPaymentCurrency | InsurClmPaymentCurrency |
@AbapCatalog.sqlViewName: 'IICLLSEXPRECINQY'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType: {
dataClass: #MIXED,
sizeCategory: #L,
serviceQuality: #D
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Finanzübersicht für Auskunft'
define view I_InsurClmLossExpnRcvryInqry
as select from I_InsurClmLossExpenseRecovery
{
key InsuranceClaim,
sum(InsurClmSalvagePaytAmt) as InsurClmSalvagePaytAmt,
sum(InsurClmSubrogtnRcvryPaytAmt) as InsurClmSubrogtnRcvryPaytAmt,
sum(InsurClmRecoveryPaytAmt) as InsurClmRecoveryPaytAmt,
sum(InsurClmTotalRecoveryPaytAmt) as InsurClmTotalRecoveryPaytAmt,
sum(InsurClmLossPaytAmt) as InsurClmLossPaytAmt,
sum(InsurClmExpensePaytAmt) as InsurClmExpensePaytAmt,
sum(InsurClmLossReserveAmt) as InsurClmLossReserveAmt,
sum(InsurClmExpenseReserveAmount) as InsurClmExpenseReserveAmount,
sum(InsurClmLossExpenditureAmount) as InsurClmLossExpenditureAmount,
sum(InsurClmExpnExpenditureAmount) as InsurClmExpnExpenditureAmount,
InsurClmPaymentCurrency
//_Claim
}
group by
InsuranceClaim,
InsurClmPaymentCurrency
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- 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