P_CASHFLOWITEMGLACCOUNTCOMB
GL Accounts of Cash Flow Items
P_CASHFLOWITEMGLACCOUNTCOMB is a CDS View in S/4HANA. GL Accounts of Cash Flow Items. It contains 1 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| P_UnrealizedCrcyDiffFilter | view | inner | COMPOSITE | Filter on Unrealized Currency Difference |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | CashFlowScopeForAccounting | CashFlowScopeForAccounting | 1 |
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private: true
@VDM.viewType: #COMPOSITE
define view entity P_CashFlowItemGLAccountComb
as select from P_CashFlowItemGLAccount
{
key CashFlowScopeForAccounting,
key CompanyCode,
key GLAccount
}
union select from I_CashFlowGLAccountDetn as GLAccount
inner join I_CompanyCode as CompanyCode on GLAccount.ChartOfAccounts = CompanyCode.ChartOfAccounts
inner join P_CashFlowItemGLAccount as flow on flow.CompanyCode = CompanyCode.CompanyCode
and flow.GLAccount = GLAccount.GLAccount
{
key flow.CashFlowScopeForAccounting,
key flow.CompanyCode,
key GLAccount.CashFlowLocalGLAccountForAPAR as GLAccount
}