C_CashPoolHierarchy
c view for display cash pool hierarchy
C_CashPoolHierarchy is a Consumption CDS View that provides data about "c view for display cash pool hierarchy" in SAP S/4HANA. It reads from 1 data source (I_CashPoolHierarchy) and exposes 13 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CashPoolHierarchy | CashPoolHierarchy | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CCASHPOOL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | c view for display cash pool hierarchy | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (13)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| BankAccount | I_CashPoolHierarchy | BankAccount | ||
| ParentBankAccount | I_CashPoolHierarchy | ParentBankAccount | ||
| HierarchyLevel | I_CashPoolHierarchy | HierarchyLevel | ||
| ParticipantCashPoolID | I_CashPoolHierarchy | ParticipantCashPoolID | ||
| LeadingCashPoolID | I_CashPoolHierarchy | LeadingCashPoolID | ||
| Currency | I_CashPoolHierarchy | Currency | ||
| MaxTargetAmount | I_CashPoolHierarchy | MaxTargetAmount | ||
| MinTargetAmount | I_CashPoolHierarchy | MinTargetAmount | ||
| MinTransferAmount | I_CashPoolHierarchy | MinTransferAmount | ||
| MaxTransferAmount | I_CashPoolHierarchy | MaxTransferAmount | ||
| Note | I_CashPoolHierarchy | Note | ||
| CompanyCode | I_CashPoolHierarchy | CompanyCode | ||
| BankAccountType | I_CashPoolHierarchy | BankAccountType |
@AbapCatalog: {
sqlViewName: 'CCASHPOOL',
compiler.compareFilter: true
}
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'c view for display cash pool hierarchy'
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ClientHandling.algorithm: #SESSION_VARIABLE
define view C_CashPoolHierarchy as select from I_CashPoolHierarchy as CashPoolHierarchy {
CashPoolHierarchy.BankAccount,
CashPoolHierarchy.ParentBankAccount,
CashPoolHierarchy.HierarchyLevel,
CashPoolHierarchy.ParticipantCashPoolID,
CashPoolHierarchy.LeadingCashPoolID,
@Semantics.currencyCode: true
CashPoolHierarchy.Currency,
@Semantics.amount.currencyCode: 'Currency'
CashPoolHierarchy.MaxTargetAmount as MaxTargetAmount,
@Semantics.amount.currencyCode: 'Currency'
CashPoolHierarchy.MinTargetAmount,
@Semantics.amount.currencyCode: 'Currency'
CashPoolHierarchy.MinTransferAmount,
@Semantics.amount.currencyCode: 'Currency'
CashPoolHierarchy.MaxTransferAmount,
CashPoolHierarchy.Note,
CashPoolHierarchy.CompanyCode,
CashPoolHierarchy.BankAccountType
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CASHPOOLHIERARCHY"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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