I_InsurClmBenefitType
Leistungsart
I_InsurClmBenefitType is a Basic CDS View that provides data about "Leistungsart" in SAP S/4HANA. It reads from 1 data source (ticl055) and exposes 5 fields with key field InsurBnftType. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ticl055 | ClaimBenefitType | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_InsurClmBenefitTypeText | _BenefitTypeText | $projection.InsurBnftType = _BenefitTypeText.InsurBnftType and _BenefitTypeText.Language = $session.system_language |
| [1] | I_InsurClmLossExpenseText | _LossExpTxt | _LossExpTxt.InsurClmLossExpnType = $projection.InsurClmLossExpnType and _LossExpTxt.Language = $session.system_language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Leistungsart | view | |
| AbapCatalog.sqlViewName | IICLBNFTTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.representativeKey | InsurBnftType | view |
@EndUserText.label: 'Leistungsart'
@AbapCatalog: {
sqlViewName: 'IICLBNFTTYPE',
compiler.compareFilter: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.usageType: {
dataClass: #CUSTOMIZING,
sizeCategory: #M,
serviceQuality: #C
}
@ObjectModel.representativeKey: 'InsurBnftType'
define view I_InsurClmBenefitType
as select from ticl055 as ClaimBenefitType
association [0..1] to I_InsurClmBenefitTypeText as _BenefitTypeText on $projection.InsurBnftType = _BenefitTypeText.InsurBnftType
and _BenefitTypeText.Language = $session.system_language
association [1] to I_InsurClmLossExpenseText as _LossExpTxt on _LossExpTxt.InsurClmLossExpnType = $projection.InsurClmLossExpnType
and _LossExpTxt.Language = $session.system_language
{
@ObjectModel.text.association: '_BenefitTypeText'
key ClaimBenefitType.bentype as InsurBnftType,
ClaimBenefitType.lossexp as InsurClmLossExpnType,
ClaimBenefitType.xcrossstype as InsurClmBnftTypeIsCrsCvrgType,
_BenefitTypeText,
cast(_LossExpTxt.InsurClmLossExpnTypeName as icl_lossexpn) as InsurClmLossExpnTypeName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INSURCLMLOSSEXPENSETEXT",
"TICL055"
],
"ASSOCIATED":
[
"I_INSURCLMBENEFITTYPETEXT",
"I_INSURCLMLOSSEXPENSETEXT"
],
"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