R_InsurClmLitigationItemTP
Insurance Claim Litigation Item
R_InsurClmLitigationItemTP is a Transactional CDS View that provides data about "Insurance Claim Litigation Item" in SAP S/4HANA. It reads from 1 data source (I_InsurClmLitigationItem) and exposes 27 fields with key fields InsurClmActive, InsuranceClaim, InsurClmLitigationItmUUID. Part of development package ICL_VDM_CLAIM_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_InsurClmLitigationItem | I_InsurClmLitigationItem | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Insurance Claim Litigation Item | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view |
Fields (27)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InsurClmActive | InsurClmActive | ||
| KEY | InsuranceClaim | InsuranceClaim | ||
| KEY | InsurClmLitigationItmUUID | InsurClmLitigationItmUUID | ||
| ChangedOnDateTime | ChangedOnDateTime | |||
| LastChangedByUser | LastChangedByUser | |||
| InsurClmDatabaseLineStatus | InsurClmDatabaseLineStatus | |||
| InsurClmSubobject | InsurClmSubobject | |||
| InsurClmLtgtnUUID | InsurClmLtgtnUUID | |||
| InsurClmLitigationItemNumber | InsurClmLitigationItemNumber | |||
| InsurClmSuitFiledDate | InsurClmSuitFiledDate | |||
| InsurClmLtgtnItmSrvcDte | InsurClmLtgtnItmSrvcDte | |||
| InsurClmLtgtnItmAnsDueDate | InsurClmLtgtnItmAnsDueDate | |||
| InsurClmLtgtnItmCaseNumber | InsurClmLtgtnItmCaseNumber | |||
| InsurClmLtgtnItmExtRef | InsurClmLtgtnItmExtRef | |||
| InsurClmLtgtnItmAppeal | InsurClmLtgtnItmAppeal | |||
| InsurClmLtgtnItmCntry | InsurClmLtgtnItmCntry | |||
| InsurClmLtgtnItmRgn | InsurClmLtgtnItmRgn | |||
| InsurClmLtgtnItmCounty | InsurClmLtgtnItmCounty | |||
| InsurClmLtgtnItmMunicipality | InsurClmLtgtnItmMunicipality | |||
| InsurClmLtgtnItmJurisdiction | InsurClmLtgtnItmJurisdiction | |||
| InsurClmLtgtnItemCourtLevel | InsurClmLtgtnItemCourtLevel | |||
| InsurClmLtgtnItmTrialDte | InsurClmLtgtnItmTrialDte | |||
| InsurClmLtgtnItemDefenseType | InsurClmLtgtnItemDefenseType | |||
| InsurClmLtgtnItmIsCancelled | InsurClmLtgtnItmIsCancelled | |||
| InsurClmLtgtnItmIsAccptd | InsurClmLtgtnItmIsAccptd | |||
| InsurClmLtgtnItmIsRjctd | InsurClmLtgtnItmIsRjctd | |||
| _InsuranceClmLitigation | _InsuranceClmLitigation |
//@AbapCatalog.viewEnhancementCategory: [#NONE]
@EndUserText.label: 'Insurance Claim Litigation Item'
@AccessControl.authorizationCheck: #MANDATORY
@Metadata.ignorePropagatedAnnotations: true
@VDM: {
viewType:#TRANSACTIONAL,
lifecycle.contract.type:#SAP_INTERNAL_API
}
@ObjectModel: {
semanticKey: [ 'InsuranceClaim' ],
usageType:{
dataClass: #TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #XL
}
}
define view entity R_InsurClmLitigationItemTP
as select from I_InsurClmLitigationItem
association to parent R_InsurClmLitigationHeaderTP as _InsuranceClmLitigation
on $projection.InsurClmActive = _InsuranceClmLitigation.InsurClmActive
and $projection.InsuranceClaim = _InsuranceClmLitigation.InsuranceClaim
and $projection.InsurClmLtgtnUUID = _InsuranceClmLitigation.InsurClmLtgtnUUID
{
key InsurClmActive,
key InsuranceClaim,
key InsurClmLitigationItmUUID,
ChangedOnDateTime,
LastChangedByUser,
InsurClmDatabaseLineStatus,
InsurClmSubobject,
InsurClmLtgtnUUID,
InsurClmLitigationItemNumber,
InsurClmSuitFiledDate,
InsurClmLtgtnItmSrvcDte,
InsurClmLtgtnItmAnsDueDate,
InsurClmLtgtnItmCaseNumber,
InsurClmLtgtnItmExtRef,
@ObjectModel.sapObjectNodeTypeReference: 'InsurClmLtgtnItemAppeal'
InsurClmLtgtnItmAppeal,
InsurClmLtgtnItmCntry,
InsurClmLtgtnItmRgn,
InsurClmLtgtnItmCounty,
InsurClmLtgtnItmMunicipality,
@ObjectModel.sapObjectNodeTypeReference: 'InsurClmLtgtnItmJurisdiction'
InsurClmLtgtnItmJurisdiction,
@ObjectModel.sapObjectNodeTypeReference: 'InsurClmLtgtnItmCourtLvl'
InsurClmLtgtnItemCourtLevel,
InsurClmLtgtnItmTrialDte,
@ObjectModel.sapObjectNodeTypeReference: 'InsurClmLtgtnItmDfnseType'
InsurClmLtgtnItemDefenseType,
InsurClmLtgtnItmIsCancelled,
InsurClmLtgtnItmIsAccptd,
InsurClmLtgtnItmIsRjctd,
//Association
_InsuranceClmLitigation
}
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