C_CashPoolHierarchy

DDL: C_CASHPOOLHIERARCHY Type: view CONSUMPTION

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)

SourceAliasJoin Type
I_CashPoolHierarchy CashPoolHierarchy from

Annotations (9)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/