I_InterestCalculationCode
Interest Calculation Code
I_InterestCalculationCode is a Basic CDS View (Dimension) that provides data about "Interest Calculation Code" in SAP S/4HANA. It reads from 1 data source (t056) and exposes 4 fields with key field InterestCalculationCode. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t056 | t056 | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_InterestCalculationCodeText | _Text | $projection.InterestCalculationCode = _Text.InterestCalculationCode |
| [0..1] | I_InterestCalculationType | _InterestCalculationType | $projection.InterestCalculationCategory = _InterestCalculationType.InterestCalculationCategory |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Interest Calculation Code | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IFIINSTCALCCD | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.representativeKey | InterestCalculationCode | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InterestCalculationCode | |||
| InterestCalculationCategory | kennz | |||
| _Text | _Text | |||
| _InterestCalculationType | _InterestCalculationType |
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Interest Calculation Code'
@Analytics.dataCategory: #DIMENSION
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog: {
sqlViewName: 'IFIINSTCALCCD',
buffering: {
status: #ACTIVE,
type: #FULL
},
compiler.compareFilter: true
}
@ObjectModel.representativeKey: 'InterestCalculationCode'
@ObjectModel.usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ] } */
define view I_InterestCalculationCode
as select from t056
association [0..*] to I_InterestCalculationCodeText as _Text on $projection.InterestCalculationCode = _Text.InterestCalculationCode
association [0..1] to I_InterestCalculationType as _InterestCalculationType on $projection.InterestCalculationCategory = _InterestCalculationType.InterestCalculationCategory
{
@ObjectModel.text.association: '_Text'
key cast ( vzskz as farp_vzskz ) as InterestCalculationCode,
@ObjectModel.foreignKey.association: '_InterestCalculationType'
kennz as InterestCalculationCategory,
_Text,
_InterestCalculationType
}
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