I_CashReconciliationsFlow

DDL: I_CASHRECONCILIATIONSFLOW SQL: ICRFLOW Type: view BASIC

Cash Reconcilation flow

I_CashReconciliationsFlow is a Basic CDS View that provides data about "Cash Reconcilation flow" in SAP S/4HANA. It reads from 1 data source (P_RECONCILIATION_STATUS) and exposes 3 fields with key fields CshRecnclnID, CashFlowID, ValidFrom.

Data Sources (1)

SourceAliasJoin Type
P_RECONCILIATION_STATUS P_RECONCILIATION_STATUS from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICRFLOW view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Cash Reconcilation flow view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CshRecnclnID reconciliation_id Reconciliation Key
KEY CashFlowID flow_id Flow ID
KEY ValidFrom valid_from Validity Start Time

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_CashReconciliationsFlow.
-- 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: ICRFLOW

CREATE VIEW I_CashReconciliationsFlow AS
SELECT
  reconciliation_id AS CshRecnclnID,
  flow_id AS CashFlowID,
  valid_from AS ValidFrom
FROM P_RECONCILIATION_STATUS
;