I_CashPoolTransfDrctnText
Cash Pool Transfer Direction Text
I_CashPoolTransfDrctnText is a Basic CDS View that provides data about "Cash Pool Transfer Direction Text" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 2 fields with key field CashPoolTransfDrctn. Part of development package FCLM_CASHPOOLING.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DomainFixedValueText | _Text | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICPLTDT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Cash Pool Transfer Direction Text | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CashPoolTransfDrctn | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CashPoolTransfDrctn | |||
| CashPoolTransfDrctnText | DomainText |
@AbapCatalog.sqlViewName: 'ICPLTDT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'Cash Pool Transfer Direction Text'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CashPoolTransfDrctn'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
define view I_CashPoolTransfDrctnText
as select from I_DomainFixedValueText as _Text
{
@ObjectModel.text.element: 'CashPoolTransfDrctnText'
key right( DomainValue, 1 ) as CashPoolTransfDrctn,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text
DomainText as CashPoolTransfDrctnText
}
where
SAPDataDictionaryDomain = 'FCLM_CPL_TRANSF_DRCTN'
and _Text.Language = $session.system_language;
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