I_FinTransFlowType
Financial Transaction Flow Type
I_FinTransFlowType is a Basic CDS View that provides data about "Financial Transaction Flow Type" in SAP S/4HANA. It reads from 2 data sources (tzb0a, at19) and exposes 6 fields with key fields TreasuryContractType, FinTransFlowType. It has 1 association to related views.
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_FinTransFlowTypeText | _Text | $projection.TreasuryContractType = _Text.TreasuryContractType and $projection.FinTransFlowType = _Text.FinTransFlowType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFTRFLOWTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.representativeKey | FinTransFlowType | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Financial Transaction Flow Type | view |
@AbapCatalog.sqlViewName: 'IFTRFLOWTYPE'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.representativeKey: 'FinTransFlowType'
@AbapCatalog.preserveKey:true
@EndUserText.label: 'Financial Transaction Flow Type'
define view I_FinTransFlowType
as select from tzb0a as FlowType
inner join at19 as FlowTypeSupplement on FlowType.rantyp = FlowTypeSupplement.rantyp
and FlowType.sbewart = FlowTypeSupplement.sbewart
association [0..*] to I_FinTransFlowTypeText as _Text on $projection.TreasuryContractType = _Text.TreasuryContractType
and $projection.FinTransFlowType = _Text.FinTransFlowType
{
key FlowType.rantyp as TreasuryContractType,
@ObjectModel.text.association: '_Text'
key FlowType.sbewart as FinTransFlowType,
FlowType.sberfima as CashFlowCalculationCategory,
cast( FlowTypeSupplement.sbktyp as ftr_flow_category preserving type )
as FinTransFlowCategory,
FlowTypeSupplement.sfee as TransFlowTypeIsRelevantForFee,
_Text
}
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