E_ARBankStatementItem

DDL: E_ARBANKSTATEMENTITEM SQL: EARBANKSTMITMEXT Type: view

E_ARBankStatementItem is a CDS View in SAP S/4HANA. It reads from 1 data source (febep) and exposes 2 fields with key fields BankStatementShortID, BankStatementItem.

Data Sources (1)

SourceAliasJoin Type
febep Persistence from

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BankStatementShortID kukey Statement Short Key
KEY BankStatementItem esnum Memo Record No.

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 E_ARBankStatementItem.
-- 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: EARBANKSTMITMEXT

CREATE VIEW E_ARBankStatementItem AS
SELECT
  kukey AS BankStatementShortID,
  esnum AS BankStatementItem
FROM febep AS Persistence
;