I_CashPoolMgmt
Manage Cash Pools
I_CashPoolMgmt is a Basic CDS View (Dimension) that provides data about "Manage Cash Pools" in SAP S/4HANA. It reads from 1 data source (I_CashPoolMD) and exposes 11 fields with key field CashPoolName. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CashPoolMD | md | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_CashPoolMDDesc | desc | $projection.CashPoolName = desc.CashPoolName |
| [0..1] | I_CashPoolTransfDrctnText | _DrctnText | $projection.CashPoolTransfDrctn = _DrctnText.CashPoolTransfDrctn |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICPLMGMT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Manage Cash Pools | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.representativeKey | CashPoolName | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CashPoolName | I_CashPoolMD | CashPoolName | |
| CashPoolIsDeleted | I_CashPoolMD | CashPoolIsDeleted | ||
| CashPoolType | I_CashPoolMD | CashPoolType | ||
| CashPoolTransfDrctn | I_CashPoolMD | CashPoolTransfDrctn | ||
| CashPoolSrvcPrvdr | I_CashPoolMD | CashPoolSrvcPrvdr | ||
| CashPoolBalCalcPrfl | I_CashPoolMD | CashPoolBalCalcPrfl | ||
| CashPoolDesc | desc | CashPoolDesc | ||
| CashPoolRefTxt | desc | CashPoolRefTxt | ||
| CashPoolTransfDrctnText | _DrctnText | CashPoolTransfDrctnText | ||
| PlanningLevel | I_CashPoolMD | PlanningLevel | ||
| BankManagedCashPoolAuthGrp | I_CashPoolMD | BankManagedCashPoolAuthGrp |
@AbapCatalog.sqlViewName: 'ICPLMGMT'
@AbapCatalog.compiler.compareFilter: true
@Analytics: {
dataCategory: #DIMENSION,
dataExtraction.enabled: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Manage Cash Pools'
@VDM.viewType: #BASIC
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.representativeKey: 'CashPoolName'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_CashPoolMgmt
as select from I_CashPoolMD as md
association [0..1] to I_CashPoolMDDesc as desc on $projection.CashPoolName = desc.CashPoolName
association [0..1] to I_CashPoolTransfDrctnText as _DrctnText on $projection.CashPoolTransfDrctn = _DrctnText.CashPoolTransfDrctn
//association [0..1] to I_CashPoolTransfDrctnText as _DrctnText on $projection.CashPoolTransfDrctn = _DrctnText.CashPoolTransfDrctn
{
@ObjectModel.text.element: 'CashPoolDesc'
key md.CashPoolName,
md.CashPoolIsDeleted,
md.CashPoolType,
md.CashPoolTransfDrctn,
md.CashPoolSrvcPrvdr,
md.CashPoolBalCalcPrfl,
@Semantics.text
desc.CashPoolDesc,
desc.CashPoolRefTxt,
@Semantics.text
_DrctnText.CashPoolTransfDrctnText,
md.PlanningLevel,
md.BankManagedCashPoolAuthGrp
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CASHPOOLMD",
"I_CASHPOOLMDDESC",
"I_CASHPOOLTRANSFDRCTNTEXT"
],
"ASSOCIATED":
[
"I_CASHPOOLMDDESC",
"I_CASHPOOLTRANSFDRCTNTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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