P_RU_FinStmntCashFlowAccount

DDL: P_RU_FINSTMNTCASHFLOWACCOUNT SQL: PRUFSCFACCOUNT Type: view BASIC

P_RU_FinStmntCashFlowAccount is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (firuc_cf_account) and exposes 7 fields with key fields LedgerGLLineItem, Version, Item.

Data Sources (1)

SourceAliasJoin Type
firuc_cf_account firuc_cf_account from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PRUFSCFACCOUNT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY LedgerGLLineItem line VAT Return Line Item
KEY Version version XML Vers.
KEY Item item Task ID
GLAccountTypeFlowType account_type SI Account type
CashFlowAccountFrom account_from From Account Number
CashFlowAccountTo account_to Up to Account No.
CashFlowAccountIsExcluded account_exclude 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 P_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: PRUFSCFACCOUNT

CREATE VIEW P_RU_FinStmntCashFlowAccount AS
SELECT
  line AS LedgerGLLineItem,
  Version,
  Item,
  account_type AS GLAccountTypeFlowType,
  account_from AS CashFlowAccountFrom,
  account_to AS CashFlowAccountTo,
  account_exclude AS CashFlowAccountIsExcluded
FROM firuc_cf_account
;