R_InsurClmPerformerTP
Insurance Claim Performer - TP
R_InsurClmPerformerTP is a Transactional CDS View that provides data about "Insurance Claim Performer - TP" in SAP S/4HANA. It reads from 2 data sources (I_InsurClmSubclmAssgmtLinkage, I_InsurClmPerformer) and exposes 9 fields with key fields InsuranceClaim, InsurClmPerformerUniqueID.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_InsurClmSubclmAssgmtLinkage | ClmAssgmt | inner |
| I_InsurClmPerformer | ClmPerfomer | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Insurance Claim Performer - TP | 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 (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InsuranceClaim | I_InsurClmPerformer | InsuranceClaim | |
| KEY | InsurClmPerformerUniqueID | I_InsurClmPerformer | InsurClmPerformerUniqueID | |
| InsurClmSubobject | I_InsurClmPerformer | InsurClmSubobject | ||
| InsurClmResponsibleRole | I_InsurClmPerformer | InsurClmResponsibleRole | ||
| InsurClmPerformerObjID | I_InsurClmPerformer | InsurClmPerformerObjID | ||
| InsurClmObjTypeOfPerformer | I_InsurClmPerformer | InsurClmObjTypeOfPerformer | ||
| InsurClmChangeTime | I_InsurClmPerformer | InsurClmChangeTime | ||
| InsurClmChangedBy | I_InsurClmPerformer | InsurClmChangedBy | ||
| _InsuranceClaim | _InsuranceClaim |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Insurance Claim Performer - TP'
@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_InsurClmPerformerTP as select from I_InsurClmPerformer as ClmPerfomer
inner join I_InsurClmSubclmAssgmtLinkage as ClmAssgmt on
ClmPerfomer.InsurClmPerformerUniqueID = ClmAssgmt.InsurClmSourceEntryUUID
association to parent R_InsuranceClaimTP as _InsuranceClaim
on $projection.InsuranceClaim = _InsuranceClaim.InsuranceClaim
association to E_InsuranceClaimPerformer as _Extension on $projection.InsuranceClaim = _Extension.InsuranceClaim
and $projection.InsurClmPerformerUniqueID = _Extension.InsurClmPerformerUniqueID
{
key ClmPerfomer.InsuranceClaim,
key ClmPerfomer.InsurClmPerformerUniqueID ,
ClmPerfomer.InsurClmSubobject,
ClmPerfomer.InsurClmResponsibleRole ,
ClmPerfomer.InsurClmPerformerObjID ,
ClmPerfomer.InsurClmObjTypeOfPerformer,
ClmPerfomer.InsurClmChangeTime,
ClmPerfomer.InsurClmChangedBy,
//Associations
_InsuranceClaim
} where ClmAssgmt.InsurClmAssignCat = 'RC' // i.e. RBP Role (Source) in Claim header (Target)
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INSURCLMPERFORMER",
"I_INSURCLMSUBCLMASSGMTLINKAGE"
],
"ASSOCIATED":
[
"R_INSURANCECLAIMTP"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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