IC_ReconciliationLedger

DDL: FINS_IC_RECON_LDR SQL: FINSV_IC_REC_LDR Type: view

IC: Determine Reconciliation Ledger

IC_ReconciliationLedger is a CDS View that provides data about "IC: Determine Reconciliation Ledger" in SAP S/4HANA. It reads from 2 data sources (finsc_ic_proj, finsc_ld_cmp) and exposes 5 fields with key fields mandt, rldnr_proj, rldnr, bukrs, curtp.

Data Sources (2)

SourceAliasJoin Type
finsc_ic_proj ic_proj inner
finsc_ld_cmp lc from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName FINSV_IC_REC_LDR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XXL view
AbapCatalog.preserveKey true view
EndUserText.label IC: Determine Reconciliation Ledger view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY mandt finsc_ic_proj mandt Editing Client
KEY rldnr_proj finsc_ic_proj rldnr Ledger (Compat.)
KEY rldnr finsc_ld_cmp rldnr Ledger (Compat.)
KEY bukrs finsc_ic_proj bukrs Value
KEY curtp finsc_ic_proj curtype Currency Type

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 IC_ReconciliationLedger.
-- 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: FINSV_IC_REC_LDR

CREATE VIEW IC_ReconciliationLedger AS
SELECT
  ic_proj.mandt AS mandt,
  ic_proj.rldnr AS rldnr_proj,
  lc.rldnr AS rldnr,
  ic_proj.bukrs AS bukrs,
  ic_proj.curtype AS curtp
FROM finsc_ld_cmp AS lc
INNER JOIN finsc_ic_proj AS ic_proj ON /* join condition not captured in parsed metadata */
;