I_RU_FinStmntCashFlowAccount

DDL: I_RU_FINSTMNTCASHFLOWACCOUNT SQL: IRUFSCFACCOUNT Type: view BASIC Package: GLO_FIN_IS_RU_FIN_STMNT

Cash Flow Statement Item Details

I_RU_FinStmntCashFlowAccount is a Basic CDS View that provides data about "Cash Flow Statement Item Details" in SAP S/4HANA. It reads from 1 data source (P_RU_FinStmntCashFlowAccount) and exposes 7 fields with key fields LedgerGLLineItem, Version, Item. Part of development package GLO_FIN_IS_RU_FIN_STMNT.

Data Sources (1)

SourceAliasJoin Type
P_RU_FinStmntCashFlowAccount P_RU_FinStmntCashFlowAccount from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IRUFSCFACCOUNT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Cash Flow Statement Item Details view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.sapObjectNodeType.name RU_FinStmntCashFlowAccount view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY LedgerGLLineItem LedgerGLLineItem Journal Entry Item
KEY Version Version XML Vers.
KEY Item Item Task ID
GLAccountTypeFlowType GLAccountTypeFlowType SI Account type
CashFlowAccountFrom CashFlowAccountFrom From Account Number
CashFlowAccountTo CashFlowAccountTo Up to Account No.
CashFlowAccountIsExcluded CashFlowAccountIsExcluded Exclude

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_RU_FinStmntCashFlowAccount.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IRUFSCFACCOUNT

CREATE VIEW I_RU_FinStmntCashFlowAccount AS
SELECT
  LedgerGLLineItem,
  Version,
  Item,
  GLAccountTypeFlowType,
  CashFlowAccountFrom,
  CashFlowAccountTo,
  CashFlowAccountIsExcluded
FROM P_RU_FinStmntCashFlowAccount
;