A_InsuranceClaimType
Insurance Claim Type
A_InsuranceClaimType is a Consumption CDS View that provides data about "Insurance Claim Type" in SAP S/4HANA. It reads from 1 data source (I_InsuranceClaimType) and exposes 4 fields with key fields InsurClmType, InsurClmTypeGeneration. It has 2 associations to related views. It is exposed through 1 OData service (API_INSURANCECLAIMTYPE).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_InsuranceClaimType | I_InsuranceClaimType | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | A_InsuranceClaimTypeText | _InsuranceClaimTypeText | $projection.InsurClmType = _InsuranceClaimTypeText.InsurClmType |
| [0..*] | A_InsuranceClaimTypeGeneration | _InsuranceClaimTypeGeneration | $projection.InsurClmTypeGeneration = _InsuranceClaimTypeGeneration.InsurClmTypeGeneration |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Insurance Claim Type | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.sapObjectNodeType.name | InsuranceClaimType | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| VDM.viewType | #CONSUMPTION | view | |
| OData.entityType.name | InsuranceClaimType_Type | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| API_INSURANCECLAIMTYPE | API_INSURANCECLAIMTYPE | V4 | C2 | NOT_RELEASED |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InsurClmType | InsurClmType | ||
| KEY | InsurClmTypeGeneration | InsurClmTypeGeneration | ||
| _InsuranceClaimTypeText | _InsuranceClaimTypeText | |||
| _InsuranceClaimTypeGeneration | _InsuranceClaimTypeGeneration |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Insurance Claim Type'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
// representativeKey: 'InsurClmType',
sapObjectNodeType.name: 'InsuranceClaimType',
usageType: {
serviceQuality: #A,
dataClass: #CUSTOMIZING,
sizeCategory: #S
}
}
@VDM : {
lifecycle.contract.type: #PUBLIC_REMOTE_API,
viewType: #CONSUMPTION
}
@OData.entityType.name: 'InsuranceClaimType_Type'
define root view entity A_InsuranceClaimType
as select from I_InsuranceClaimType
association [0..*] to A_InsuranceClaimTypeText as _InsuranceClaimTypeText
on $projection.InsurClmType = _InsuranceClaimTypeText.InsurClmType
association [0..*] to A_InsuranceClaimTypeGeneration as _InsuranceClaimTypeGeneration
on $projection.InsurClmTypeGeneration = _InsuranceClaimTypeGeneration.InsurClmTypeGeneration
{
key InsurClmType,
key InsurClmTypeGeneration,
//Associations
_InsuranceClaimTypeText,
_InsuranceClaimTypeGeneration
}
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