I_Iban

DDL: I_IBAN SQL: IIBAN Type: view BASIC

IBAN

I_Iban is a Basic CDS View that provides data about "IBAN" in SAP S/4HANA. It reads from 1 data source (tiban) and exposes 6 fields with key fields BankCountry, Bank, BankAccount, BankControlKey.

Data Sources (1)

SourceAliasJoin Type
tiban tiban from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName IIBAN view
AbapCatalog.compiler.compareFilter true view
EndUserText.label IBAN view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BankCountry banks Bank Ctry/Rgn. Key
KEY Bank bankl House Bank
KEY BankAccount bankn Bank acct
KEY BankControlKey bkont To Account
IBAN iban IBAN House Bank
IBANValidityStartDate 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_Iban.
-- 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: IIBAN

CREATE VIEW I_Iban AS
SELECT
  banks AS BankCountry,
  bankl AS Bank,
  bankn AS BankAccount,
  bkont AS BankControlKey,
  IBAN,
  valid_from AS IBANValidityStartDate
FROM tiban
;