A_BusinessPartnerBank

DDL: A_BUSINESSPARTNERBANK SQL: ABUPABANK Type: view BASIC

Bank

A_BusinessPartnerBank is a Basic CDS View that provides data about "Bank" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartnerBank) and exposes 20 fields with key fields BusinessPartner, BankIdentification.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartnerBank I_BusinessPartnerBank from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ABUPABANK view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Bank view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Issuing Authority
KEY BankIdentification BankIdentification Bank Details
BankCountryKey BankCountryKey Bank Ctry/Reg.
BankName BankName Bank Name
BankNumber BankNumber Bank Key
SWIFTCode SWIFTCode SWIFT/BIC
BankControlKey BankControlKey Control Key
BankAccountHolderName BankAccountHolderName Account Holder
BankAccountName BankAccountName Account Name
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
IBAN IBAN IBAN House Bank
IBANValidityStartDate IBANValidityStartDate IBAN Valid From
BankAccount BankAccount Bank acct
BankAccountReferenceText BankAccountReferenceText Reference
CollectionAuthInd CollectionAuthInd Collect.author.
CityName CityName Name
BPBankIsProtected BPBankIsProtected Sensitivity
AuthorizationGroup AuthorizationGroup AuthorizGroup
_BusinessPartner _BusinessPartner

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 A_BusinessPartnerBank.
-- 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: ABUPABANK

CREATE VIEW A_BusinessPartnerBank AS
SELECT
  BusinessPartner,
  BankIdentification,
  BankCountryKey,
  BankName,
  BankNumber,
  SWIFTCode,
  BankControlKey,
  BankAccountHolderName,
  BankAccountName,
  ValidityStartDate,
  ValidityEndDate,
  IBAN,
  IBANValidityStartDate,
  BankAccount,
  BankAccountReferenceText,
  CollectionAuthInd,
  CityName,
  BPBankIsProtected,
  AuthorizationGroup
FROM I_BusinessPartnerBank
;