I_BankStatementItemBasic

DDL: I_BANKSTATEMENTITEMBASIC Type: view_entity BASIC

Bk Stmnt Item

I_BankStatementItemBasic is a Basic CDS View that provides data about "Bk Stmnt Item" in SAP S/4HANA. It reads from 1 data source (febep) and exposes 7 fields with key fields BankStatementShortID, BankStatementItem. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
febep febep from

Associations (1)

CardinalityTargetAliasCondition
[1] febko header $projection.BankStatementShortID = header.kukey

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_INCLUDED view
EndUserText.label Bk Stmnt Item view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BankStatementShortID kukey Statement Short Key
KEY BankStatementItem esnum Memo Record No.
BankStatementDate header azdat Statement Date
BankStatement header aznum Bank Statement No.
BankStatementPageNumber header azpgno PageNo.:5Digits
BankStatementInputFormat header input_format Input Format
CompanyCode header bukrs Value

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_BankStatementItemBasic.
-- 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.

CREATE VIEW I_BankStatementItemBasic AS
SELECT
  kukey AS BankStatementShortID,
  esnum AS BankStatementItem,
  header.azdat AS BankStatementDate,
  header.aznum AS BankStatement,
  header.azpgno AS BankStatementPageNumber,
  header.input_format AS BankStatementInputFormat,
  header.bukrs AS CompanyCode
FROM febep
LEFT OUTER JOIN febko AS header ON BankStatementShortID = header.kukey  -- association [1]
;