P_FinTransCapFloorCondition
Cap Floor Condition
P_FinTransCapFloorCondition is a Composite CDS View that provides data about "Cap Floor Condition" in SAP S/4HANA. It reads from 1 data source (R_FinTransAlternativeCondition) and exposes 3 fields. Part of development package FTTR_CORE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_FinTransAlternativeCondition | R_FinTransAlternativeCondition | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PFINTRSCPCON | view | |
| EndUserText.label | Cap Floor Condition | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| CompanyCode | CompanyCode | |||
| FinancialTransaction | FinancialTransaction | |||
| FinancialInstrumentActivity | FinancialInstrumentActivity |
@AbapCatalog.sqlViewName: 'PFINTRSCPCON'
@EndUserText.label: 'Cap Floor Condition'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.preserveKey: true
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #L
@VDM.viewType: #COMPOSITE
@VDM.private:true
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_FinTransCapFloorCondition as select from R_FinTransAlternativeCondition {
CompanyCode,
FinancialTransaction,
FinancialInstrumentActivity,
cast ( case
when (FinCndnFormulaVariable = 'MAXC')
then ConditionPercentageRate
end as ftr_cndn_upper_limit_rate preserving type ) as FinCndnUpperLimitPctgRate,
cast ( case
when (FinCndnFormulaVariable = 'MINF')
then ConditionPercentageRate
end as ftr_cndn_lower_limit_rate preserving type ) as FinCndnLowerLimitPctgRate
}
where
FinConditionItem = '0001'
and ( FinCndnFormulaVariable = 'MINF' or FinCndnFormulaVariable = 'MAXC')
and ConditionPercentageRate is not initial
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