I_CashPoolTypeText
Cash Pool Type Text
I_CashPoolTypeText is a Basic CDS View that provides data about "Cash Pool Type Text" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 2 fields with key field CashPoolType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DomainFixedValueText | _Text | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICPLTYPET | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Cash Pool Type Text | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CashPoolType | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CashPoolType | DomainValue | ||
| CashPoolTypeText | DomainText |
@AbapCatalog.sqlViewName: 'ICPLTYPET'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'Cash Pool Type Text'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CashPoolType'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_CashPoolTypeText
as select from I_DomainFixedValueText as _Text
{
@ObjectModel.text.element: 'CashPoolTypeText'
key DomainValue as CashPoolType,
@UI.hidden: true
@Semantics.text
DomainText as CashPoolTypeText
}
where
SAPDataDictionaryDomain = 'FCLM_CPL_TYPE'
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