I_CashPoolMgmt

DDL: I_CASHPOOLMGMT SQL: ICPLMGMT Type: view BASIC

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)

SourceAliasJoin Type
I_CashPoolMD md from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CashPoolMDDesc desc $projection.CashPoolName = desc.CashPoolName
[0..1] I_CashPoolTransfDrctnText _DrctnText $projection.CashPoolTransfDrctn = _DrctnText.CashPoolTransfDrctn

Annotations (12)

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

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