P_CashFlowForRcnlnPrfl

DDL: P_CASHFLOWFORRCNLNPRFL SQL: PCSHFRPF Type: view COMPOSITE

P_CashFlowForRcnlnPrfl is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (P_RecnclnCashFlowBasic, I_CashFlowRcnlnPrfl) and exposes 7 fields with key fields BankAccountInternalID, OriginApplication, CertaintyLevel, PlanningLevel, TransactionCurrency.

Data Sources (2)

SourceAliasJoin Type
P_RecnclnCashFlowBasic one_exposure from
I_CashFlowRcnlnPrfl recnclnprfl inner

Parameters (2)

NameTypeDefault
P_ValueDate sydate
P_CashFlowRcnlnPrfl fclm_rcn_profile

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PCSHFRPF view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #C view
AbapCatalog.preserveKey true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID P_RecnclnCashFlowBasic BankAccountInternalID Technical ID
KEY OriginApplication P_RecnclnCashFlowBasic OriginApplication Origin Application
KEY CertaintyLevel P_RecnclnCashFlowBasic CertaintyLevel
KEY PlanningLevel P_RecnclnCashFlowBasic PlanningLevel Planning Level
KEY TransactionCurrency P_RecnclnCashFlowBasic TransactionCurrency Transaction Currency
KEY CashFlowReconciliationResult bundle_item CashFlowReconciliationResult
AmountInTransactionCurrency

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_CashFlowForRcnlnPrfl.
-- 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: PCSHFRPF
-- Parameters: P_ValueDate : sydate, P_CashFlowRcnlnPrfl : fclm_rcn_profile

CREATE VIEW P_CashFlowForRcnlnPrfl AS
SELECT
  one_exposure.BankAccountInternalID AS BankAccountInternalID,
  one_exposure.OriginApplication AS OriginApplication,
  one_exposure.CertaintyLevel AS CertaintyLevel,
  one_exposure.PlanningLevel AS PlanningLevel,
  one_exposure.TransactionCurrency AS TransactionCurrency,
  bundle_item.CashFlowReconciliationResult AS CashFlowReconciliationResult,
  sum(one_exposure.AmountInTransactionCurrency) AS AmountInTransactionCurrency
FROM P_RecnclnCashFlowBasic AS one_exposure
INNER JOIN I_CashFlowRcnlnPrfl AS recnclnprfl ON /* join condition not captured in parsed metadata */
;