I_BankRecnclnAccount

DDL: I_BANKRECNCLNACCOUNT SQL: IBNKRECNACCT Type: view BASIC

Bank Reconciliation Account

I_BankRecnclnAccount is a Basic CDS View that provides data about "Bank Reconciliation Account" in SAP S/4HANA. It reads from 1 data source (ska1) and exposes 4 fields with key fields ChartOfAccounts, BankReconciliationAccount. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
ska1 ska1 from

Associations (2)

CardinalityTargetAliasCondition
[1] I_ChartOfAccounts _ChartOfAccounts $projection.ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts
[0..*] I_GLAccountText _Text $projection.ChartOfAccounts = _Text.ChartOfAccounts and $projection.BankReconciliationAccount = _Text.GLAccount

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IBNKRECNACCT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Bank Reconciliation Account view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey BankReconciliationAccount view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.buffering.status #NOT_ALLOWED view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts ktopl G/L Chart of Accounts
KEY BankReconciliationAccount saknr G/L Account
_Text _Text
_ChartOfAccounts _ChartOfAccounts

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_BankRecnclnAccount.
-- 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: IBNKRECNACCT

CREATE VIEW I_BankRecnclnAccount AS
SELECT
  ktopl AS ChartOfAccounts,
  saknr AS BankReconciliationAccount
FROM ska1
LEFT OUTER JOIN I_ChartOfAccounts AS _ChartOfAccounts ON ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts  -- association [1]
LEFT OUTER JOIN I_GLAccountText AS _Text ON ChartOfAccounts = _Text.ChartOfAccounts AND BankReconciliationAccount = _Text.GLAccount  -- association [0..*]
;