I_BusinessPartnerIBAN

DDL: I_BUSINESSPARTNERIBAN SQL: IBPIBAN Type: view BASIC

Core View: Business Partner IBAN

I_BusinessPartnerIBAN is a Basic CDS View that provides data about "Core View: Business Partner 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 (9)

NameValueLevelField
AbapCatalog.sqlViewName IBPIBAN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true 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
EndUserText.label Core View: Business Partner IBAN 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_BusinessPartnerIBAN.
-- 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: IBPIBAN

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